feat(touch-emulator): 支持白名单排除 (#8984)

This commit is contained in:
Amumu 2021-07-06 17:26:31 +08:00 committed by GitHub
parent 2a74d88c91
commit f595755484
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,19 @@
};
}
if (!Element.prototype.closest) {
Element.prototype.closest = function (s) {
var el = this;
do {
if (el.matches(s)) return el;
el = el.parentElement || el.parentNode;
} while (el !== null && el.nodeType === 1);
return null;
};
}
/**
* create an touch point
* @constructor
@ -130,7 +143,9 @@
eventTarget = ev.target;
}
triggerTouch(touchType, ev);
if (eventTarget.closest('[data-no-touch-simulate]') == null) {
triggerTouch(touchType, ev);
}
// reset
if (ev.type === 'mouseup') {