We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cecbda commit a221be1Copy full SHA for a221be1
src/js/utils/events.js
@@ -104,7 +104,7 @@ export function fixEvent(event) {
104
// But native events return true for stopPropagation, but don't have
105
// other expected methods like isPropagationStopped. Seems to be a problem
106
// with the Javascript Ninja code. So we're just overriding all events now.
107
- if (!event || !event.isPropagationStopped) {
+ if (!event || !event.isPropagationStopped || !event.isImmediatePropagationStopped) {
108
const old = event || window.event;
109
110
event = {};
0 commit comments