Skip to content
Snippets Groups Projects
Verified Commit 83ce0d98 authored by Pascal Ernster's avatar Pascal Ernster :mask:
Browse files

Don't load hls.js from external CDN

We don't want unnecessary client-side connections to third-party
domains. universalviewer ships its own copy of hls.js, so use that one.

Note: This copy of hls.js is likely outdated, so it should be updated in
a subsequent commit.
parent 381991df
No related merge requests found
Pipeline #7130 failed
......@@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="uv.css">
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<script src="lib/hls.min.js"></script>
<script type="text/javascript" src="lib/offline.js"></script>
<script type="text/javascript" src="helpers.js"></script>
<style>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment