stop opera doing stupid things
parent
a93ff37879
commit
a45a8a837d
|
@ -4665,7 +4665,10 @@ function Ace2Inner(){
|
||||||
function bindTheEventHandlers()
|
function bindTheEventHandlers()
|
||||||
{
|
{
|
||||||
$(document).on("keydown", handleKeyEvent);
|
$(document).on("keydown", handleKeyEvent);
|
||||||
$(document).on("keypress", handleKeyEvent);
|
// Hack for Opera to stop it firing twice on events
|
||||||
|
if (/Opera[\/\s](\d+\.\d+)/.test(!navigator.userAgent)){
|
||||||
|
$(document).on("keypress", handleKeyEvent);
|
||||||
|
}
|
||||||
$(document).on("keyup", handleKeyEvent);
|
$(document).on("keyup", handleKeyEvent);
|
||||||
$(document).on("click", handleClick);
|
$(document).on("click", handleClick);
|
||||||
$(root).on("blur", handleBlur);
|
$(root).on("blur", handleBlur);
|
||||||
|
|
Loading…
Reference in New Issue