Gitter migration: Point people to app.gitter.im (rollout pt. 1)
[gitter.git] / public / js / utils / matches-selector.js
blob1d80601e0dd53c6756edde17dfab63b619793ec7
1 'use strict';
3 var ElementPrototype = Element.prototype;
4 var fn =
5   ElementPrototype.matches ||
6   ElementPrototype.webkitMatchesSelector ||
7   ElementPrototype.mozMatchesSelector ||
8   ElementPrototype.msMatchesSelector;
10 module.exports = function(element, selector) {
11   return fn.call(element, selector);