mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-18 15:41:05 +00:00
24 lines
598 B
JavaScript
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));
|
|
});
|