Fixes bug with shortcuts enabled when the user is writing in a text field.

This commit is contained in:
fo 2014-09-12 14:42:33 +03:00
parent 092e8df148
commit d822748150
1 changed files with 1 additions and 2 deletions

View File

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