%PDF- %PDF-
| Direktori : /proc/self/root/proc/self/root/home/bitrix/www/bitrix/js/main/polyfill/matches/js/ |
| Current File : //proc/self/root/proc/self/root/home/bitrix/www/bitrix/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);