diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-20 05:36:35 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-20 05:36:35 +0800 |
commit | 07c34751da96e3daa023b028494ef1c86cf6d1fc (patch) | |
tree | 9ae6e648b6f24d402205fb80f81026fa826e61e7 /cmd/mist/assets/ext/mist.js | |
parent | 4322632c5924ef9aaaad1cdcdfa2f796c493cf69 (diff) | |
parent | acd93c29711f18787ec3392751f57ffe08b5df28 (diff) | |
download | dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.tar dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.tar.gz dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.tar.bz2 dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.tar.lz dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.tar.xz dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.tar.zst dexon-07c34751da96e3daa023b028494ef1c86cf6d1fc.zip |
Merge pull request #335 from alexvandesande/ui
Cut, Copy, Undo and Redo working in webview
Diffstat (limited to 'cmd/mist/assets/ext/mist.js')
-rw-r--r-- | cmd/mist/assets/ext/mist.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/cmd/mist/assets/ext/mist.js b/cmd/mist/assets/ext/mist.js index 8734f8dc7..2fc38cdfa 100644 --- a/cmd/mist/assets/ext/mist.js +++ b/cmd/mist/assets/ext/mist.js @@ -20,16 +20,18 @@ console.log("loaded?"); document.onkeydown = function(evt) { + // This functions keeps track of keyboard inputs in order to allow copy, paste and other features + evt = evt || window.event; if (evt.ctrlKey && evt.keyCode == 67) { window.document.execCommand("copy"); - console.log("Ctrl-C"); } else if (evt.ctrlKey && evt.keyCode == 88) { window.document.execCommand("cut"); - console.log("Ctrl-X"); - } if (evt.ctrlKey && evt.keyCode == 86) { - console.log("Ctrl-V"); - } if (evt.ctrlKey && evt.keyCode == 90) { - console.log("Ctrl-Z"); + } else if (evt.ctrlKey && evt.keyCode == 86) { + window.document.execCommand("paste"); + } else if (evt.ctrlKey && evt.keyCode == 90) { + window.document.execCommand("undo"); + } else if (evt.ctrlKey && evt.shiftKey && evt.keyCode == 90) { + window.document.execCommand("redo"); } };
\ No newline at end of file |