index.route.js
353 Bytes
(function() {
'use strict';
angular
.module('angular')
.config(routeConfig);
function routeConfig($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'app/main/main.html',
controller: 'MainController',
controllerAs: 'main'
})
.otherwise({
redirectTo: '/'
});
}
})();