mirror of
https://github.com/Modernizr/Modernizr.git
synced 2026-01-09 15:47:55 -05:00
* Fix: Update lowbandwidth condition to match new spec (#2688) * Adds PushManager feature detection #2703 (#2708) * Added detection of type worker option and aspect ratio (#2702)
20 lines
417 B
JavaScript
20 lines
417 B
JavaScript
/*!
|
|
{
|
|
"name": "PushManager",
|
|
"property": "pushmanager",
|
|
"caniuse": "mdn-api_pushmanager",
|
|
"authors": ["Dawid Kulpa (@dawidkulpa)"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/API/PushManager"
|
|
}]
|
|
}
|
|
!*/
|
|
|
|
/* DOC
|
|
Detects support for PushManager.
|
|
*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('pushmanager', 'PushManager' in window);
|
|
});
|