diff options
author | FChannel <=> | 2021-02-02 00:51:05 -0800 |
---|---|---|
committer | FChannel <=> | 2021-02-02 00:51:05 -0800 |
commit | ea664188aa26a55b31c5b789cb4a98e33af7fc99 (patch) | |
tree | 106cb55fbcc706cdc6ec70283a6ddb3d3d095f86 /static/ncatalog.html | |
parent | f5657459f6140aeded7a77bd85af492e3c6cdb13 (diff) |
turned of preload metadata, might turn on later
Diffstat (limited to 'static/ncatalog.html')
-rw-r--r-- | static/ncatalog.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/ncatalog.html b/static/ncatalog.html index b4e6f76..a57e291 100644 --- a/static/ncatalog.html +++ b/static/ncatalog.html @@ -49,7 +49,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 }}' |