Use stopImmediatePropagation without checking for its existence first

These checks were added years ago, but given the following compatibility data we should just be able to call the method directly: https://developer.mozilla.org/en-US/docs/Web/API/Event/stopImmediatePropagation#browser_compatibility
This commit is contained in:
Jonas Jenwald 2022-09-24 15:02:12 +02:00
parent 907ef467ea
commit b420f0165a

View File

@ -314,14 +314,8 @@ window.addEventListener(
) {
window.print();
// The (browser) print dialog cannot be prevented from being shown in
// IE11.
event.preventDefault();
if (event.stopImmediatePropagation) {
event.stopImmediatePropagation();
} else {
event.stopPropagation();
}
event.stopImmediatePropagation();
}
},
true
@ -331,7 +325,7 @@ if ("onbeforeprint" in window) {
// Do not propagate before/afterprint events when they are not triggered
// from within this polyfill. (FF / Chrome 63+).
const stopPropagationIfNeeded = function (event) {
if (event.detail !== "custom" && event.stopImmediatePropagation) {
if (event.detail !== "custom") {
event.stopImmediatePropagation();
}
};