From 941949906d72b0e653939e23295eee2645cbc009 Mon Sep 17 00:00:00 2001 From: videogame hacker Date: Wed, 16 Feb 2022 05:56:55 +0000 Subject: [PATCH] Update cache busting tag (again) --- 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 822bb10..e1e4c09 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 bc24d8b..2388eb2 100644 --- a/frontend/create.mjs +++ b/frontend/create.mjs @@ -1,4 +1,4 @@ -import { setupCreateSessionForm } from "./lib/create-session.mjs?v=e9a1b"; +import { setupCreateSessionForm } from "./lib/create-session.mjs?v=1e57e6"; const main = () => { setupCreateSessionForm(); diff --git a/frontend/index.html b/frontend/index.html index 59adc3d..8737bd3 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 7a1b451..6108b2f 100644 --- a/frontend/lib/chat.mjs +++ b/frontend/lib/chat.mjs @@ -2,8 +2,8 @@ import { setDebounce, setVideoTime, setPlaying, -} from "./watch-session.mjs?v=e9a1b"; -import { emojify, emojis } from "./emojis.mjs?v=e9a1b"; +} from "./watch-session.mjs?v=1e57e6"; +import { emojify, emojis } from "./emojis.mjs?v=1e57e6"; function insertAtCursor(input, textToInsert) { const isSuccess = document.execCommand("insertText", false, textToInsert); diff --git a/frontend/lib/create-session.mjs b/frontend/lib/create-session.mjs index d76ff47..cf63112 100644 --- a/frontend/lib/create-session.mjs +++ b/frontend/lib/create-session.mjs @@ -1,4 +1,4 @@ -import { createSession } from "./watch-session.mjs?v=e9a1b"; +import { createSession } from "./watch-session.mjs?v=1e57e6"; 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 97b6e17..3f79d7e 100644 --- a/frontend/lib/join-session.mjs +++ b/frontend/lib/join-session.mjs @@ -1,4 +1,4 @@ -import { joinSession } from "./watch-session.mjs?v=e9a1b"; +import { joinSession } from "./watch-session.mjs?v=1e57e6"; /** * @param {HTMLInputElement} field diff --git a/frontend/lib/watch-session.mjs b/frontend/lib/watch-session.mjs index 16d3075..65fe0d9 100644 --- a/frontend/lib/watch-session.mjs +++ b/frontend/lib/watch-session.mjs @@ -1,9 +1,9 @@ -import { setupVideo } from "./video.mjs?v=e9a1b"; +import { setupVideo } from "./video.mjs?v=1e57e6"; import { setupChat, logEventToChat, updateViewerList, -} from "./chat.mjs?v=e9a1b"; +} from "./chat.mjs?v=1e57e6"; import ReconnectingWebSocket from "./reconnecting-web-socket.mjs"; /** diff --git a/frontend/main.mjs b/frontend/main.mjs index dfa680a..aaad1d9 100644 --- a/frontend/main.mjs +++ b/frontend/main.mjs @@ -1,4 +1,4 @@ -import { setupJoinSessionForm } from "./lib/join-session.mjs?v=e9a1b"; +import { setupJoinSessionForm } from "./lib/join-session.mjs?v=1e57e6"; const main = () => { setupJoinSessionForm();