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,5 @@
import { htmlEditorDefaultConfig, htmlEditorLangsMap } from 'Common/Globals';
import { EventKeyCode, Magics } from 'Common/Enums';
import { EventKeyCode } from 'Common/Enums';
import * as Settings from 'Storage/Settings';
class HtmlEditor {
@ -57,7 +57,7 @@ class HtmlEditor {
clearTimeout(this.blurTimer);
this.blurTimer = setTimeout(() => {
this.runOnBlur();
}, Magics.Time200ms);
}, 200);
}
}