Skip to content

Commit 74ecaa9

Browse files
committed
fix(VSnackbar): don't cancel close timeout after a touch event
These events aren't supported in older browser versions but it's a non-critical feature so they can just suffer I guess. fixes #13904
1 parent 6bb9484 commit 74ecaa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: packages/vuetify/src/components/VSnackbar/VSnackbar.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ export default mixins(
173173
value: this.isActive,
174174
}],
175175
on: {
176-
mouseenter: () => window.clearTimeout(this.activeTimeout),
177-
mouseleave: this.setTimeout,
176+
pointerenter: () => window.clearTimeout(this.activeTimeout),
177+
pointerleave: this.setTimeout,
178178
},
179179
})
180180

0 commit comments

Comments
 (0)