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 22' svelte ' : patch
33---
44
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) {
143143
144144// used to store the reference to the currently propagated event
145145// 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
147147// set on the event object is lost, causing the event delegation
148148// to process the event twice
149149let last_propagated_event = null ;
You can’t perform that action at this time.
0 commit comments