Skip to content

Commit a14daf0

Browse files
committed
fix: adjust mutation threshold for settled events to improve detection on mobile
1 parent 4bb9235 commit a14daf0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

userscript/source/vuejsawait.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function AttachVueSettledEvents(TargetEl: HTMLElement, Options: { QuietMs
7575
LastMutationAt = performance.now()
7676

7777
EmitChange(Mutations)
78-
if (Mutations.length >= 25) {
78+
if (Mutations.length >= 10) {
7979
ArmSettledTimer()
8080
}
8181
EmitUrlChange()

0 commit comments

Comments
 (0)