allow chrome to do control z type functionality, not sure why this was never in.. broken when we last updated jQ anyway

This commit is contained in:
John McLear 2013-03-05 20:30:31 +00:00
parent 2b5cb2989c
commit f9f8b1c079
1 changed files with 1 additions and 1 deletions

View File

@ -3580,7 +3580,7 @@ function Ace2Inner(){
var specialHandled = false;
var isTypeForSpecialKey = ((browser.msie || browser.safari) ? (type == "keydown") : (type == "keypress"));
var isTypeForCmdKey = ((browser.msie || browser.safari) ? (type == "keydown") : (type == "keypress"));
var isTypeForCmdKey = ((browser.msie || browser.safari || browser.chrome) ? (type == "keydown") : (type == "keypress"));
var stopped = false;