Makes shortcuts active when chat is opened but not focused.

This commit is contained in:
fo 2014-09-10 16:54:01 +03:00
parent 60ef0f033b
commit 58aeee750f
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,8 @@ var KeyboardShortcut = (function(my) {
};
window.onkeyup = function(e) {
if($("#chatspace").css("display") === "none") {
if($("#chatspace").css("display") === "none" ||
!($("#usermsg").is(":focus") || $("#nickinput").is(":focus"))) {
var keycode = e.which;
if (typeof shortcuts[keycode] === "object") {
shortcuts[keycode].function();