diff options
author | Devaev Maxim <[email protected]> | 2019-07-13 06:38:55 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-07-13 06:38:55 +0300 |
commit | 98468bfa3069e76862be8e0a19bbe8e3fc6748fa (patch) | |
tree | 8a2cf0083532b2d7058b194410bd32386a7f07d3 /web/share/js/kvm/keyboard.js | |
parent | ad97aecaf4d043c59d018310b4d8f4852d30b6e0 (diff) |
using js modules
Diffstat (limited to 'web/share/js/kvm/keyboard.js')
-rw-r--r-- | web/share/js/kvm/keyboard.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/web/share/js/kvm/keyboard.js b/web/share/js/kvm/keyboard.js index 1a4563af..d573d924 100644 --- a/web/share/js/kvm/keyboard.js +++ b/web/share/js/kvm/keyboard.js @@ -20,7 +20,11 @@ *****************************************************************************/ -function Keyboard() { +import {tools, $} from "../tools.js"; +import {Keypad} from "../keypad.js"; + + +export function Keyboard() { var self = this; /************************************************************************/ |