'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' }); }]);