IE11 seems to require a return false from click handler, stopPropagation() does NOT stop link from being executed

This commit is contained in:
Ralf Becker 2014-02-26 12:35:56 +00:00
parent c4385f79ec
commit 4d8a7d58a1

View File

@ -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