blob: 795f1db7e0438f6c516a9f13cdfa859e7cd570fa (
plain)
1
2
3
4
5
6
7
8
9
10
|
'use strict';
// Declare app level module which depends on filters, and services
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives']).
config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/view1', {template: 'partials/partial1.html', controller: MyCtrl1});
$routeProvider.when('/view2', {template: 'partials/partial2.html', controller: MyCtrl2});
$routeProvider.otherwise({redirectTo: '/view1'});
}]);
|