Merge pull request #1602 from ether/chrome-linux-indent

fix indent on chrome in linux
This commit is contained in:
John McLear 2013-03-08 08:21:49 -08:00
commit 0717ac7b88
1 changed files with 1 additions and 1 deletions

View File

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