aboutsummaryrefslogtreecommitdiff
path: root/static/js/glifestream.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/glifestream.js')
-rw-r--r--static/js/glifestream.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/static/js/glifestream.js b/static/js/glifestream.js
index d17ec52..553ac96 100644
--- a/static/js/glifestream.js
+++ b/static/js/glifestream.js
@@ -92,7 +92,7 @@
}
if (type == 'audio')
- var embed = '<audio src="'+ $('a', this).attr ('href') +'" controls="true" autoplay="autoplay">'+ _('Your browser does not support it.') +'</audio>';
+ var embed = '<audio src="'+ $('a', this).attr ('href') +'" controls="true">'+ _('Your browser does not support it.') +'</audio>';
else if (type in audio_embeds)
var embed = audio_embeds[type];
else
@@ -113,6 +113,10 @@
$('.player').remove ();
$(this.parentNode).append ('<div class="player audio">' + embed + '</div>');
+ if (type == 'audio') {
+ var $au = $(this.parentNode).find ('audio');
+ if ($au.length) $au[0].play ();
+ }
return false;
}

Return to:

Send suggestions and report system problems to the System administrator.