X-Git-Url: https://git.wh0rd.org/?p=chrome-ext%2Fmusic-player-client.git;a=blobdiff_plain;f=main.js;fp=main.js;h=16875983968fd05b34c142910747a369b2bb5517;hp=266bb1e60f6b242ff3108ae858d3d9322281f9b2;hb=ccfc12deb15558bccd7d1c5a586fef5b86d386ea;hpb=59f1734f1a863c8082c2a65b5f479cb6aea9651c diff --git a/main.js b/main.js index 266bb1e..1687598 100644 --- a/main.js +++ b/main.js @@ -61,17 +61,23 @@ window.onload = function() { }; window.onkeypress = function(e) { + if (e.target != document.body) { + /* Only allow the shortcuts when the focus is on the body. + Otherwise you can't type these numbers into text fields. */ + return; + } + switch (e.keyCode) { case 49: // 1 show_page('controls'); break; - case 50: // 1 + case 50: // 2 show_page('metadata'); break; - case 51: // 1 + case 51: // 3 show_page('playlist'); break; - case 52: // 1 + case 52: // 4 show_page('options'); break; }