diff options
-rw-r--r-- | templates/status.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/status.tmpl b/templates/status.tmpl index 6433b9c..c817da2 100644 --- a/templates/status.tmpl +++ b/templates/status.tmpl @@ -92,7 +92,7 @@ {{if $.Ctx.HideAttachments}} <a href="{{.URL}}" target="_blank"> [audio] </a> {{else}} - <audio class="status-audio" controls preload="none"> + <audio class="status-audio" controls> <source src="{{.URL}}"> <a href="{{.URL}}" target="_blank"> [audio] </a> </audio> @@ -103,7 +103,7 @@ <a href="{{.URL}}" target="_blank"> [video] </a> {{else}} <div class="status-video-container"> - <video class="status-video" controls preload="none"> + <video class="status-video" controls> <source src="{{.URL}}"> <a href="{{.URL}}" target="_blank"> [video] </a> </video> |