19 lines
689 B
JavaScript
19 lines
689 B
JavaScript
angular.module('webui', [
|
|
'webui.services.utils', 'webui.services.deps', 'webui.services.base64',
|
|
'webui.services.constants', 'webui.services.rpc',
|
|
'webui.services.modals', 'webui.services.alerts',
|
|
'webui.services.settings', 'webui.services.settings.filters',
|
|
'webui.filters.bytes', 'webui.filters.path',
|
|
'webui.directives.chunkbar', 'webui.directives.dgraph', 'webui.directives.fselect',
|
|
'webui.ctrls.download', 'webui.ctrls.nav', 'webui.ctrls.modal', 'webui.ctrls.alert'
|
|
]);
|
|
|
|
$(function() {
|
|
angular.bootstrap(document, [
|
|
// external deps
|
|
'ui.bootstrap.collapse', 'ui.bootstrap.dropdownToggle',
|
|
'ui.bootstrap.modal', 'ui.bootstrap.alert',
|
|
'webui'
|
|
])
|
|
});
|