mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
17 lines
424 B
JavaScript
17 lines
424 B
JavaScript
/*!
|
|
{
|
|
"name": "script[async]",
|
|
"property": "scriptasync",
|
|
"caniuse": "script-async",
|
|
"tags": ["script"],
|
|
"builderAliases": ["script_async"],
|
|
"authors": ["Theodoor van Donge"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the `async` attribute on the `<script>` element.
|
|
*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('scriptasync', 'async' in createElement('script'));
|
|
});
|