27 lines
1.0 KiB
JavaScript
27 lines
1.0 KiB
JavaScript
var webui = angular.module('webui', [
|
|
'webui.services.utils', 'webui.services.deps', 'webui.services.base64',
|
|
'webui.services.configuration', 'webui.services.rpc',
|
|
'webui.services.modals', 'webui.services.alerts',
|
|
'webui.services.settings', 'webui.services.settings.filters',
|
|
'webui.filters.bytes',
|
|
'webui.directives.chunkbar', 'webui.directives.dgraph', 'webui.directives.fselect',
|
|
'webui.ctrls.download', 'webui.ctrls.nav', 'webui.ctrls.modal', 'webui.ctrls.alert',
|
|
'webui.ctrls.props',
|
|
// external deps
|
|
'ui.bootstrap.collapse', 'ui.bootstrap.dropdownToggle',
|
|
'ui.bootstrap.modal', 'ui.bootstrap.alert'
|
|
]);
|
|
|
|
$(function() {
|
|
if (!String.prototype.startsWith) {
|
|
Object.defineProperty(String.prototype, 'startsWith', {
|
|
enumerable: false, configurable: false, writable: false,
|
|
value: function (searchString, position) {
|
|
position = position || 0;
|
|
return this.indexOf(searchString, position) === position;
|
|
}
|
|
});
|
|
}
|
|
angular.bootstrap(document, ['webui'])
|
|
});
|