Add cmd interface

Code refactoring
This commit is contained in:
RainLoop Team 2016-08-24 01:17:50 +03:00
parent e6e1a19477
commit 962391e2a0
23 changed files with 180 additions and 223 deletions

View file

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