fix(touch-emulator): 添加 Element.prototype.matches 的polyfill (#8992)

This commit is contained in:
Amumu 2021-07-08 09:36:56 +08:00 committed by GitHub
parent d6663464c9
commit 63c283d8bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,12 @@
};
}
if (!Element.prototype.matches) {
Element.prototype.matches =
Element.prototype.msMatchesSelector ||
Element.prototype.webkitMatchesSelector;
}
if (!Element.prototype.closest) {
Element.prototype.closest = function (s) {
var el = this;