more working logic and also pretty nice screen reader experience

This commit is contained in:
John McLear 2015-03-26 13:58:57 +00:00
parent 959aa92656
commit 7b726cbc02
4 changed files with 6 additions and 3 deletions

View file

@ -320,6 +320,7 @@ window.onload = function () {\n\
var outerFrame = document.createElement("IFRAME");
outerFrame.name = "ace_outer";
outerFrame.frameBorder = 0; // for IE
outerFrame.title = "Ether";
info.frame = outerFrame;
document.getElementById(containerId).appendChild(outerFrame);

View file

@ -325,7 +325,7 @@ var padeditbar = (function()
// On left arrow move to next button in editbar
if(evt.keyCode === 37){
editbarPosition--;
$(focusItems[editbarPosition]).focus();
$(focusItems[editbarPosition]).focus()
}
// On right arrow move to next button in editbar