16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
'use strict';
|
|
|
|
/* Default App Application */
|
|
if (typeof app === 'undefined') {
|
|
app = angular.module('app', [
|
|
'xeditable',
|
|
'ngRoute',
|
|
'ui.select',
|
|
'uiDirectives'
|
|
]);
|
|
|
|
app.run(['editableOptions', function (editableOptions) {
|
|
editableOptions.theme = 'bs3'; // bootstrap3 theme. Can be also 'bs2', 'default'
|
|
}]);
|
|
}
|