We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cb65458 + 74709b0 commit 78addb9Copy full SHA for 78addb9
src/undom.js
@@ -134,7 +134,7 @@ export default function undom() {
134
do {
135
l = t.__handlers[toLower(event.type)];
136
if (l) for (i=l.length; i--; ) {
137
- if ((l[i](event)===false || event._end) && c) break;
+ if ((l[i].call(t, event)===false || event._end) && c) break;
138
}
139
} while (event.bubbles && !(c && event._stop) && (event.target=t=t.parentNode));
140
return !event.defaultPrevented;
0 commit comments