aboutsummaryrefslogtreecommitdiff
path: root/static/posts.html
diff options
context:
space:
mode:
authorFChannel <=>2021-02-02 00:51:05 -0800
committerFChannel <=>2021-02-02 00:51:05 -0800
commitea664188aa26a55b31c5b789cb4a98e33af7fc99 (patch)
tree106cb55fbcc706cdc6ec70283a6ddb3d3d095f86 /static/posts.html
parentf5657459f6140aeded7a77bd85af492e3c6cdb13 (diff)
turned of preload metadata, might turn on later
Diffstat (limited to 'static/posts.html')
-rw-r--r--static/posts.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/posts.html b/static/posts.html
index 0e381ea..086c5b5 100644
--- a/static/posts.html
+++ b/static/posts.html
@@ -39,7 +39,7 @@
if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "audio"){
var audio = document.createElement("audio")
audio.controls = 'controls'
- audio.preload = 'metadata'
+ audio.preload = 'none'
audio.src = '{{ (index .Attachment 0).Href }}'
audio.type = '{{ (index .Attachment 0).MediaType }}'
audio.style = "float: left; margin-right: 10px; margin-bottom: 10px; width: 250px;"
@@ -50,7 +50,7 @@
if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "video"){
var video = document.createElement("video")
video.controls = 'controls'
- video.preload = 'metadata'
+ video.preload = 'none'
video.muted = 'muted'
video.src = '{{ (index .Attachment 0).Href }}'
video.type = '{{ (index .Attachment 0).MediaType }}'