webui-aria2/js/init.js

18 lines
710 B
JavaScript
Raw Normal View History

2013-03-02 12:01:07 +01:00
var webui = 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',
2013-03-02 12:01:07 +01:00
'webui.ctrls.download', 'webui.ctrls.nav', 'webui.ctrls.modal', 'webui.ctrls.alert',
'webui.ctrls.props',
2013-03-02 12:01:07 +01:00
// external deps
'ui.bootstrap.collapse', 'ui.bootstrap.dropdownToggle',
'ui.bootstrap.modal', 'ui.bootstrap.alert'
]);
$(function() {
2013-03-02 12:01:07 +01:00
angular.bootstrap(document, ['webui'])
});