We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a1a935 commit ce7ca7bCopy full SHA for ce7ca7b
src/platforms/web/runtime/modules/events.js
@@ -54,7 +54,7 @@ function add (
54
const now = performance.now()
55
const original = handler
56
handler = original._wrapper = function (e) {
57
- if (e.timeStamp > now) {
+ if (e.timeStamp >= now) {
58
return original.apply(this, arguments)
59
}
60
0 commit comments