From 1655484d89e6f60cef2cd63b73cb68f82cd71ab0 Mon Sep 17 00:00:00 2001 From: videogame hacker Date: Thu, 17 Feb 2022 06:25:54 +0000 Subject: [PATCH] Update cache busting tag --- frontend/create.html | 4 ++-- frontend/create.mjs | 2 +- frontend/index.html | 4 ++-- frontend/lib/chat.mjs | 4 ++-- frontend/lib/create-session.mjs | 2 +- frontend/lib/join-session.mjs | 2 +- frontend/lib/watch-session.mjs | 4 ++-- frontend/main.mjs | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/create.html b/frontend/create.html index e1e4c09..412be2d 100644 --- a/frontend/create.html +++ b/frontend/create.html @@ -3,7 +3,7 @@ watch party :D - + @@ -47,6 +47,6 @@ - + diff --git a/frontend/create.mjs b/frontend/create.mjs index 2388eb2..384b026 100644 --- a/frontend/create.mjs +++ b/frontend/create.mjs @@ -1,4 +1,4 @@ -import { setupCreateSessionForm } from "./lib/create-session.mjs?v=1e57e6"; +import { setupCreateSessionForm } from "./lib/create-session.mjs?v=19ef791"; const main = () => { setupCreateSessionForm(); diff --git a/frontend/index.html b/frontend/index.html index 8737bd3..99aea42 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,7 +3,7 @@ watch party :D - + @@ -64,6 +64,6 @@ - + diff --git a/frontend/lib/chat.mjs b/frontend/lib/chat.mjs index 3888787..aa53b58 100644 --- a/frontend/lib/chat.mjs +++ b/frontend/lib/chat.mjs @@ -2,8 +2,8 @@ import { setDebounce, setVideoTime, setPlaying, -} from "./watch-session.mjs?v=1e57e6"; -import { emojify, emojis } from "./emojis.mjs?v=1e57e6"; +} from "./watch-session.mjs?v=19ef791"; +import { emojify, emojis } from "./emojis.mjs?v=19ef791"; function setCaretPosition(elem, caretPos) { if (elem.createTextRange) { diff --git a/frontend/lib/create-session.mjs b/frontend/lib/create-session.mjs index cf63112..6b3eff6 100644 --- a/frontend/lib/create-session.mjs +++ b/frontend/lib/create-session.mjs @@ -1,4 +1,4 @@ -import { createSession } from "./watch-session.mjs?v=1e57e6"; +import { createSession } from "./watch-session.mjs?v=19ef791"; export const setupCreateSessionForm = () => { const form = document.querySelector("#create-session-form"); diff --git a/frontend/lib/join-session.mjs b/frontend/lib/join-session.mjs index 3f79d7e..ac8576c 100644 --- a/frontend/lib/join-session.mjs +++ b/frontend/lib/join-session.mjs @@ -1,4 +1,4 @@ -import { joinSession } from "./watch-session.mjs?v=1e57e6"; +import { joinSession } from "./watch-session.mjs?v=19ef791"; /** * @param {HTMLInputElement} field diff --git a/frontend/lib/watch-session.mjs b/frontend/lib/watch-session.mjs index 65fe0d9..1ab62f1 100644 --- a/frontend/lib/watch-session.mjs +++ b/frontend/lib/watch-session.mjs @@ -1,9 +1,9 @@ -import { setupVideo } from "./video.mjs?v=1e57e6"; +import { setupVideo } from "./video.mjs?v=19ef791"; import { setupChat, logEventToChat, updateViewerList, -} from "./chat.mjs?v=1e57e6"; +} from "./chat.mjs?v=19ef791"; import ReconnectingWebSocket from "./reconnecting-web-socket.mjs"; /** diff --git a/frontend/main.mjs b/frontend/main.mjs index aaad1d9..2e239a0 100644 --- a/frontend/main.mjs +++ b/frontend/main.mjs @@ -1,4 +1,4 @@ -import { setupJoinSessionForm } from "./lib/join-session.mjs?v=1e57e6"; +import { setupJoinSessionForm } from "./lib/join-session.mjs?v=19ef791"; const main = () => { setupJoinSessionForm();