Changed: StorageResultType to error result code

This commit is contained in:
djmaze 2021-03-16 09:46:23 +01:00
parent be3ef15f8e
commit 4a8d516123
33 changed files with 257 additions and 302 deletions

8
dev/bootstrap.js vendored
View file

@ -1,5 +1,4 @@
import { doc, elementById, dropdownVisibility, Settings } from 'Common/Globals';
import { StorageResultType } from 'Common/Enums';
import { i18n } from 'Common/Translator';
import { root } from 'Common/Links';
@ -35,7 +34,12 @@ export default (App) => {
rl.i18n = i18n;
rl.Enums = {
StorageResultType: StorageResultType
StorageResultType: {
Success: 0,
Error: 1,
Abort: 2,
Unload: 3
}
};
rl.Dropdowns = [];