22 lines
471 B
JavaScript
22 lines
471 B
JavaScript
'use strict';
|
|
|
|
/* App Module */
|
|
|
|
var app = angular.module('app', [
|
|
'xeditable',
|
|
'ngRoute',
|
|
'controllers'
|
|
]);
|
|
|
|
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'
|
|
});
|
|
}]);
|