removed lIsBind from listener

This commit is contained in:
coderaiaser 2013-06-14 05:08:11 -07:00
parent 78d7cf7886
commit 8446a63ac6

View file

@ -88,16 +88,14 @@ var CloudCmd, Util, DOM, $;
lIsBind = Key.isBind(),
lKey = pEvent.keyCode;
/* если клавиши можно обрабатывать */
if (lIsBind)
switch(lKey){
case lF10:
Console.show();
break;
case lESC:
Console.hide();
break;
}
switch(lKey){
case lF10:
Console.show();
break;
case lESC:
Console.hide();
break;
}
}
}