Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. /buildings?id=110&type=special&color=red
  2.  
  3. $routeProvider
  4.  
  5. // route for the main page which will direct to the buildings page
  6. .when('/', {
  7. templateUrl : 'web/pages/dashboard.html',
  8. controller : 'dashboardController',
  9. controllerAs : 'dashboard'
  10. })
  11.  
  12. // route for the main page which will direct to the buildings page
  13. .when('/buildings/:buildingId/:buildingType/:buildingColor', {
  14. templateUrl : 'web/pages/buildings.html',
  15. controller : 'mainController',
  16. controllerAs : 'buildings'
  17. })
  18. ;
  19.  
  20. });
  21.  
  22. /buildings/110/special/red
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement