From 0b5a060c1f73aee966d76192867218518032be01 Mon Sep 17 00:00:00 2001 From: Korbs Date: Sat, 9 Nov 2024 14:59:30 -0500 Subject: [PATCH] Move HLS script to it's own Astro file --- src/Controls.astro | 38 ++++++-------------------------------- src/Features/HLS.astro | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+), 32 deletions(-) create mode 100644 src/Features/HLS.astro diff --git a/src/Controls.astro b/src/Controls.astro index d1083c0..33620f5 100644 --- a/src/Controls.astro +++ b/src/Controls.astro @@ -6,8 +6,11 @@ const { SeekColor = '#ff274d' } = Astro.props +// Functions +import HLS from './Features/HLS.astro' + // Icons and Styles -import './Iconoir.css' +import './Styles/Iconoir.css' ---
@@ -49,6 +52,7 @@ import './Iconoir.css'
{Live ? + Live : null @@ -59,34 +63,4 @@ import './Iconoir.css'
- - - - - -{Live ? - - : - null -} \ No newline at end of file + \ No newline at end of file diff --git a/src/Features/HLS.astro b/src/Features/HLS.astro new file mode 100644 index 0000000..a6fc76d --- /dev/null +++ b/src/Features/HLS.astro @@ -0,0 +1,21 @@ + \ No newline at end of file