mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
14 lines
336 B
JavaScript
14 lines
336 B
JavaScript
/*!
|
|
{
|
|
"name": "Audio Loop Attribute",
|
|
"property": "audioloop",
|
|
"tags": ["audio", "media"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects if an audio element can automatically restart, once it has finished
|
|
*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('audioloop', 'loop' in createElement('audio'));
|
|
});
|