UNPKG

modernizr

Version:

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.

26 lines (23 loc) 623 B
/*! { "name": "matchMedia", "property": "matchmedia", "caniuse" : "matchmedia", "tags": ["matchmedia"], "authors": ["Alberto Elias"], "notes": [{ "name": "W3C CSSOM View Module", "href": "https://drafts.csswg.org/cssom-view/#the-mediaquerylist-interface" }, { "name": "MDN documentation", "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)); });