This commit is contained in:
Alex Corbi 2019-09-30 10:44:43 +02:00
parent 36c5cc15a7
commit f972d8d46e
176 changed files with 62106 additions and 59068 deletions

View file

@ -1,5 +1,5 @@
/**
* matchesSelector v2.0.2
* matchesSelector v2.0.1
* matchesSelector( element, '.selector' )
* MIT license
*/
@ -25,7 +25,7 @@
'use strict';
var matchesMethod = ( function() {
var ElemProto = window.Element.prototype;
var ElemProto = Element.prototype;
// check for the standard method name first
if ( ElemProto.matches ) {
return 'matches';