1
0
mirror of synced 2025-02-03 21:59:24 +03:00

do not open on meta key, closes #165

This commit is contained in:
Igor Vaynberg 2012-06-28 02:27:09 -07:00
parent 95b89d44f8
commit 89ee75dd9d

View File

@ -79,6 +79,9 @@
case KEY.ALT:
return true;
}
if (k.metaKey) return true;
return false;
},
isFunctionKey: function (k) {