I want to navigate to another page without reloading the controller:
.state('app.viewcomments', {
url: '/viewcomments/?new',
views: {
'menuContent': {
templateUrl: 'templates/posts/view-comment.html',
controller: 'SearchController'
}
}
})
What i want is if I navigate to this url from anywhere it should not reload SearchController
based on this solution it tried :
<a href="#/app.viewcomments/?new" class="button button-icon icon ion-plus-round"></a>
<a href="#app.viewcomments/?new" class="button button-icon icon ion-plus-round"></a>
<a href="app.viewcomments/?new" class="button button-icon icon ion-plus-round"></a>
but none of them worked.