%PDF- %PDF-
| Direktori : /home/bitrix/www/bitrix/modules/main/install/js/main/polyfill/matches/js/ |
| Current File : //home/bitrix/www/bitrix/modules/main/install/js/main/polyfill/matches/js/matches.js |
/**
* Element.prototype.matches polyfill
*/
;(function(element) {
'use strict';
if (!element.matches && element.matchesSelector)
{
element.matches = element.matchesSelector;
}
if (!element.matches)
{
element.matches = function(selector) {
var matches = document.querySelectorAll(selector);
var self = this;
return Array.prototype.some.call(matches, function(e) {
return e === self;
});
};
}
})(Element.prototype);