workaround for - key bug on firefox

This commit is contained in:
nightwing 2012-09-09 16:04:57 +04:00
commit e3ead4f3b0

View file

@ -122,6 +122,9 @@ var Keys = (function() {
ret.enter = ret["return"];
ret.escape = ret.esc;
ret.del = ret["delete"];
// workaround for firefox bug
ret[173] = '-';
return ret;
})();