Angularjs routing not working after upgrade from v1.0.8 --> v1.2.14 -


i've upgraded application v1.0.8 --> v1.2.14 , i'm not able view routes. i'm not sure how debug controller not invoked either. i'm not getting errors @ either?

any appreciated. again

.config(function($routeprovider) {     $routeprovider         .when('/:a', {             template: '<div data-ng-include="templateurl">loading...</div>',             controller: 'dynamiccontroller'         })         .otherwise({             redirectto: '/:a'     }); }); 

i not appending /#/a url. application working fine.


Comments

Popular posts from this blog

javascript - Unusual behaviour when drawing lots of images onto a large canvas -

how can i manage url using .htaccess in php? -

javascript - Chart.js - setting tooltip z-index -