mirror of
https://github.com/Modernizr/Modernizr.git
synced 2026-01-09 15:47:55 -05:00
* Convert jsdoc HTTP to HTTPS (#2338) Convert http -> https in JSDocs. * Finish checking http hyperlinks in jsDocs - Links in jsDocs that are working but do not have HTTPS are left as is. - Dead links are replaced with archived links if obtainable, otherwise new links with similar information. * Fixes to some HTTPS Links - Fixing comments - Pointing to archived links - Replacing with new links * Fixing HTTPS:// links in jsDocs - Unify WFC comment name - Change some links to new redirected links - Change some links to acrhived links * Changing old links to new redirected links * Updates for pull request - Fix missing square bracket - Update generic names (i.e. WHATWG, MDN, Html5 Rocks) - Update archive links to most recent working links - Point link to direct issue for oninput.js
22 lines
684 B
JavaScript
22 lines
684 B
JavaScript
/*!
|
|
{
|
|
"name": "Application Cache",
|
|
"property": "applicationcache",
|
|
"caniuse": "offline-apps",
|
|
"tags": ["storage", "offline"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en/docs/HTML/Using_the_application_cache"
|
|
}],
|
|
"polyfills": ["html5gears"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the Application Cache, for storing data to enable web-based applications run offline.
|
|
|
|
The API has been [heavily criticized](https://alistapart.com/article/application-cache-is-a-douchebag) and discussions are underway to address this.
|
|
*/
|
|
define(['Modernizr'], function(Modernizr) {
|
|
Modernizr.addTest('applicationcache', 'applicationCache' in window);
|
|
});
|