mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Merge pull request #1602 from ether/chrome-linux-indent
fix indent on chrome in linux
This commit is contained in:
commit
0717ac7b88
1 changed files with 1 additions and 1 deletions
|
@ -3583,7 +3583,7 @@ function Ace2Inner(){
|
||||||
}
|
}
|
||||||
|
|
||||||
var specialHandled = false;
|
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 isTypeForCmdKey = ((browser.msie || browser.safari || browser.chrome) ? (type == "keydown") : (type == "keypress"));
|
||||||
|
|
||||||
var stopped = false;
|
var stopped = false;
|
||||||
|
|
Loading…
Reference in a new issue