All Questions
Tagged with angularjs-routing architecture
2 questions
0
votes
0
answers
80
views
Share data between AngularJS states
So I've 2 states configured to use the SAME controller, as follows:
$stateProvider
.state('productsList', {
url: '/products',
templateUrl: 'views/productList.html',
...
1
vote
0
answers
186
views
Way to use AngularJS in a magazine reader app
I'm learning AngularJS to make an app like this one.
The example site uses a global JS object for one issue of a magazine to manage pages of it, and uses click handlers to deal w/ page switching and ...