Blame view
sources/apps/updater/js/app.js
292 Bytes
|
d1bafeea1
|
1 2 3 4 5 6 7 |
angular.module('updater', []).
config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/index', { controller: backupCtrl}).
when('/update', {templateUrl: 'templates/partials/update.html', controller: updateCtrl}).
otherwise({redirectTo: '/index'});
}]);
|