77785173bf
Ability to download files directly via pre-configured webserver. Simply supply the base URL and links will be added to each file in the details section.
26 lines
976 B
JavaScript
Executable File
26 lines
976 B
JavaScript
Executable File
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.filters.url',
|
|
'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'
|
|
]);
|
|
|
|
$(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'])
|
|
});
|