escape to exit editbar

pull/2566/head
John McLear 2015-03-26 11:24:06 +00:00
parent e67ae522e2
commit 69f0392e75
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ var padeditbar = (function()
function editbarKeyEvent(evt){ function editbarKeyEvent(evt){
// If the event is Alt F9 (we're already in the editbar menu // If the event is Alt F9 (we're already in the editbar menu
// Send the users focus back to the pad // 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.. // If we're in the editbar already..
$(':focus').blur(); // required to do not try to remove! $(':focus').blur(); // required to do not try to remove!
padeditor.ace.focus(); // Sends focus back padeditor.ace.focus(); // Sends focus back