welsonjs/node_modules/modernizr/feature-detects/window/matchmedia.js

24 lines
598 B
JavaScript

/*!
{
"name": "matchMedia",
"property": "matchmedia",
"caniuse": "matchmedia",
"tags": ["matchmedia"],
"authors": ["Alberto Elias"],
"notes": [{
"name": "W3C Spec",
"href": "https://drafts.csswg.org/cssom-view/#the-mediaquerylist-interface"
}, {
"name": "MDN Docs",
"href": "https://developer.mozilla.org/en-US/docs/Web/API/Window.matchMedia"
}],
"polyfills": ["matchmediajs"]
}
!*/
/* DOC
Detects support for matchMedia.
*/
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
Modernizr.addTest('matchmedia', !!prefixed('matchMedia', window));
});