diff options
author | r <r@freesoftwareextremist.com> | 2020-05-03 07:01:34 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-05-03 07:01:34 +0000 |
commit | 4b255673726a1b36fc0b99c3fd6cfcd4c949d372 (patch) | |
tree | 125c1eb7165286e551c245a8f619fb5639d06df5 /templates | |
parent | f380371654dd81b258e5f37e50ffcf3764f117c1 (diff) | |
download | bloat-4b255673726a1b36fc0b99c3fd6cfcd4c949d372.tar.gz bloat-4b255673726a1b36fc0b99c3fd6cfcd4c949d372.zip |
Use default preload setting for audio and video
Diffstat (limited to 'templates')
-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> |