mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 07:35:05 -04:00
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:
parent
2b5cb2989c
commit
f9f8b1c079
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue