Update sumorobot.js

This commit is contained in:
Silver Kuusik 2017-10-13 11:44:34 +02:00 committed by GitHub
parent 23af7025f0
commit ed18ac54c5
1 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ window.onload = function() {
/* key down event */
$(document).keydown(function(e) {
/* if the hotkeys are disabled or the focused element is a textarea or text input, don't use hotkeys */
if (hotkeys == false || $(e.target).is("textarea") || $(e.target).is("[type=text]")) return;
if (hotkeys == false || $(e.target).is("textarea") || $(e.target).is("[type=text]") || $(e.target).is("[class=blocklyHtmlInput]")) return;
/* select the hotkey */
switch(e.which) {
case 32: // space bar
@ -354,7 +354,7 @@ window.onload = function() {
/* key up event */
$(document).keyup(function(e) {
/* if the hotkeys are disabled or the focused element is a textarea or text input, don't use hotkeys */
if (hotkeys == false || $(e.target).is("textarea") || $(e.target).is("[type=text]")) return;
if (hotkeys == false || $(e.target).is("textarea") || $(e.target).is("[type=text]") || $(e.target).is("[class=blocklyHtmlInput]")) return;
/* remove hover from buttons */
$('.btn').removeClass('hover');
/* if arrow keys */