mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-08 14:23:30 +00:00
9 lines
334 B
JavaScript
9 lines
334 B
JavaScript
|
|
// a[download] attribute
|
|
// When used on an <a>, this attribute signifies that the resource it
|
|
// points to should be downloaded by the browser rather than navigating to it.
|
|
// http://developers.whatwg.org/links.html#downloading-resources
|
|
// By Addy Osmani
|
|
|
|
Modernizr.addTest('adownload', 'download' in document.createElement('a'));
|