X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/8da63edfda172244fb15ffd3cf69223fe06d4898..1c6039264da1010372c1bcb4688556255becef0d:/keys.js diff --git a/keys.js b/keys.js index b625db7..993e8f4 100644 --- a/keys.js +++ b/keys.js @@ -23,19 +23,27 @@ document.onkeypress = function(e) { keys[keylabels[i].innerHTML] = keylabels[i].parentNode; } var input = e.charCode || e.keyCode; + + // find key element matching input for (var i = 0; i < keylabels.length; i++) { var key = keylabels[i].parentNode; - if (!key.onclick) continue; + if (!key.onclick) continue; // link var keychar = key.className.match(/ chr(\d+)$/); - if (!keychar) continue; // not enterable + if (!keychar) continue; // has code keychar = keychar[1]; - if (keychar != input) continue; // different key + if (keychar != input) continue; // matches code + + // match mode (visibility) var row = key.parentNode; + var shown = row.style.display != 'none'; + if (!shown) continue; + + // match key modifiers var keymod = row.className; - if ((keymod.search(/\bctrl\b/) != -1) != e.ctrlKey) continue; // modifier mismatch + if ((keymod.search(/\bctrl\b/) != -1) != e.ctrlKey) continue; if ((keymod.search(/\bmeta\b/) != -1) != e.altKey) continue; - var shown = row.style.display != 'none'; - if (!shown) continue; // foreign mode + + // select if (keyfocus) keyfocus.style.outline = ''; key.style.outline = '1px solid red'; keyfocus = key;