File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/svelte/src/internal/client/dom/elements Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
' svelte ' : patch
3
3
---
4
4
5
- Fix double event processing in firefox due to event object being garbage collected ( # 16522 )
5
+ fix: double event processing in firefox due to event object being garbage collected
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ export function delegate(events) {
143
143
144
144
// used to store the reference to the currently propagated event
145
145
// to prevent garbage collection between microtasks in Firefox
146
- // If the event object is GCed to early, the expando __root property
146
+ // If the event object is GCed too early, the expando __root property
147
147
// set on the event object is lost, causing the event delegation
148
148
// to process the event twice
149
149
let last_propagated_event = null ;
You can’t perform that action at this time.
0 commit comments