istic-openstack/client/js/app.js
2016-01-31 13:18:15 +01:00

18 lines
No EOL
522 B
JavaScript

// Declare main app
var mainApp=angular.module("mainApp",['ngRoute', 'ngSanitize']);
mainApp.config(['$routeProvider', function($routeProvider){
$routeProvider.
when('/home',{
templateUrl: 'partials/home.html',
controller: 'homeCtrl'
}).
when('/network',{
templateUrl: 'partials/network.html',
controller: 'networkCtrl'
}).otherwise({
redirectTo: '/home'
});
}]);