Makes shortcuts active when chat is opened but not focused.
This commit is contained in:
parent
60ef0f033b
commit
58aeee750f
|
@ -32,7 +32,8 @@ var KeyboardShortcut = (function(my) {
|
||||||
};
|
};
|
||||||
|
|
||||||
window.onkeyup = function(e) {
|
window.onkeyup = function(e) {
|
||||||
if($("#chatspace").css("display") === "none") {
|
if($("#chatspace").css("display") === "none" ||
|
||||||
|
!($("#usermsg").is(":focus") || $("#nickinput").is(":focus"))) {
|
||||||
var keycode = e.which;
|
var keycode = e.which;
|
||||||
if (typeof shortcuts[keycode] === "object") {
|
if (typeof shortcuts[keycode] === "object") {
|
||||||
shortcuts[keycode].function();
|
shortcuts[keycode].function();
|
||||||
|
|
Loading…
Reference in New Issue