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

pull/129/head
fo 11 years ago
parent 092e8df148
commit d822748150
  1. 3
      keyboard_shortcut.js

@ -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();

Loading…
Cancel
Save