Remove Common/Enums Magics.*

This commit is contained in:
djmaze 2020-08-13 22:58:41 +02:00
parent 382aef7ebb
commit 6541a1de7c
38 changed files with 135 additions and 219 deletions

View file

@ -1,5 +1,4 @@
import ko from 'ko';
import { Magics } from 'Common/Enums';
import * as Settings from 'Storage/Settings';
class AccountUserStore {
@ -10,7 +9,7 @@ class AccountUserStore {
this.signature = ko.observable('');
this.accounts = ko.observableArray([]);
this.accounts.loading = ko.observable(false).extend({ throttle: Magics.Time100ms });
this.accounts.loading = ko.observable(false).extend({ throttle: 100 });
this.computers();
}