mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +01:00
IE11 seems to require a return false from click handler, stopPropagation() does NOT stop link from being executed
This commit is contained in:
parent
c4385f79ec
commit
4d8a7d58a1
@ -77,7 +77,8 @@ egw_LAB.wait(function() {
|
||||
}
|
||||
}
|
||||
args.unshift(matches[1]);
|
||||
return et2_call.apply(this, args);
|
||||
et2_call.apply(this, args);
|
||||
return false; // IE11 seems to require this, ev.stopPropagation() does NOT stop link from being executed
|
||||
});
|
||||
|
||||
// make sidebox resizable with jQueryUI resizable
|
||||
|
Loading…
Reference in New Issue
Block a user