I\'m trying to get my head around AngularJS and ran into a problem.
var myApp = angular.module(\'myApp\', [\'myApp.services\']);
myApp.config([\'$routeP
I usually see routing applied by chaining them together:
$routeProvider
.when('/dashboard', {templateUrl: 'partial/dashboard', controller: DashboardController})
.when('/menu', {templateUrl: 'partial/other', controller: OtherController})
.otherwise({redirectTo: '/dashboard'});
Can't see why yours would not work, but might be worth a go.