We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ade28 commit dae7e41Copy full SHA for dae7e41
src/platforms/web/runtime/modules/events.js
@@ -60,7 +60,12 @@ function add (
60
const attachedTimestamp = currentFlushTimestamp
61
const original = handler
62
handler = original._wrapper = function (e) {
63
- if (e.timeStamp >= attachedTimestamp) {
+ if (
64
+ e.timeStamp >= attachedTimestamp ||
65
+ // #9448 bail if event is fired in another document in a multi-page
66
+ // electron/nw.js app
67
+ e.target.ownerDocument !== document
68
+ ) {
69
return original.apply(this, arguments)
70
}
71
0 commit comments