diff options
author | John McLear <john@mclear.co.uk> | 2015-03-26 11:24:06 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2015-03-26 11:24:06 +0000 |
commit | 69f0392e75534e9340f6349c5af3a765454ec78a (patch) | |
tree | 5d08cca3e579409b1501ca2267e0abdf525c0144 /src/static/js | |
parent | e67ae522e22afedac8585209eabdd3f388a24c78 (diff) | |
download | etherpad-lite-69f0392e75534e9340f6349c5af3a765454ec78a.zip |
escape to exit editbar
Diffstat (limited to 'src/static/js')
-rw-r--r-- | src/static/js/pad_editbar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/pad_editbar.js b/src/static/js/pad_editbar.js index 022e9493..a16cc63f 100644 --- a/src/static/js/pad_editbar.js +++ b/src/static/js/pad_editbar.js @@ -310,7 +310,7 @@ var padeditbar = (function() function editbarKeyEvent(evt){ // If the event is Alt F9 (we're already in the editbar menu // Send the users focus back to the pad - if(evt.keyCode === 120){ + if(evt.keyCode === 120 || evt.keyCode === 27){ // If we're in the editbar already.. $(':focus').blur(); // required to do not try to remove! padeditor.ace.focus(); // Sends focus back |