Hi Angular Community! Good to meet you! I have heard good things from the Angular Air podcast. I've listened to the first 0-3 episodes a couple of times. I'm trying to learn angularjs, I went throught the two courses on codeschool and I've gone through the first two on egghead.io.
This is my first try going beyond the lessons/videos and I am having some trouble. I have forked the final branch of an egghead.io example and have been struggling with a problem I think is related to UI-router. In my index html have two named views. Right now they are called 'users' and 'calendars' https://github.com/LogicalTime/egghead-angularjs-eggly-architecture/blob/15-animate-ui-router/src/index.html I'd like to hook them up to two independent modules: This one uses users@ and calendars@ https://github.com/LogicalTime/egghead-angularjs-eggly-architecture/blob/15-animate-ui-router/src/app/users/users.js This one uses categories@ and bookmarks@ https://github.com/LogicalTime/egghead-angularjs-eggly-architecture/blob/15-animate-ui-router/src/app/categories/categories.js I've tried doing a bunch of things but I can't seem to get both to function properly. The closest I have come is this: 1) In categories.js <https://github.com/LogicalTime/egghead-angularjs-eggly-architecture/blob/15-animate-ui-router/src/app/categories/categories.js> I replace categories@ and bookmarks@ with users@ and calendars@ to hopefully override the ui-view="users" and ui-view="calendars" in the index.htm <https://github.com/LogicalTime/egghead-angularjs-eggly-architecture/blob/15-animate-ui-router/src/index.html> l 2) This does show the correct static content but stuff doesn't change correctly for the categories page(src/index.html#/cat/) but it works fine for the users page (src/index.html#/u/). 3) For the categories page, when I click on the items the urls change in my navigation bar but nothing changes on the screen, no filtering, no showing the create/edit view etc. I feel like I am missing something fundamental. Thanks for reading and hopefully helping. -Mark vB -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
