I've just upgraded my application from v1.0.8 --> v1.2.14 and now I'm not able to view any routes. I'm not sure how to debug this as the controller is not invoked either. I'm not getting any errors at all either?
Any help is appreciated. Thanks again
.config(function($routeProvider) {
$routeProvider
.when('/:a', {
template: '<div data-ng-include="templateUrl">Loading...</div>',
controller: 'DynamicController'
})
.otherwise({
redirectTo: '/:a'
});
});