EnVisageOnline/Main/Source/EnVisage/Scripts/Angular/app.js

25 lines
541 B
JavaScript

'use strict';
/* App Module */
var app = angular.module('app', [
'xeditable',
'ngRoute',
'ui.select',
'dnd', // drag and drop
'uiDirectives',
'enVisageServices'
]);
app.run(function (editableOptions) {
editableOptions.theme = 'bs3'; // bootstrap3 theme. Can be also 'bs2', 'default'
});
app.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/Scenarios/Details/:id', {
controller: 'scenarioDetailsCalendarController'
});
}]);