Update cache busting tag

votekiss
Charlotte Som 2022-02-17 06:25:54 +00:00
parent 19ef7911ae
commit 1655484d89
8 changed files with 12 additions and 12 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<title>watch party :D</title>
<link rel="stylesheet" href="/styles.css?v=1e57e6" />
<link rel="stylesheet" href="/styles.css?v=19ef791" />
</head>
<body>
@ -47,6 +47,6 @@
</form>
</div>
<script type="module" src="/create.mjs?v=1e57e6"></script>
<script type="module" src="/create.mjs?v=19ef791"></script>
</body>
</html>

View File

@ -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();

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<title>watch party :D</title>
<link rel="stylesheet" href="/styles.css?v=1e57e6" />
<link rel="stylesheet" href="/styles.css?v=19ef791" />
</head>
<body>
@ -64,6 +64,6 @@
</form>
</div>
<script type="module" src="/main.mjs?v=1e57e6"></script>
<script type="module" src="/main.mjs?v=19ef791"></script>
</body>
</html>

View File

@ -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) {

View File

@ -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");

View File

@ -1,4 +1,4 @@
import { joinSession } from "./watch-session.mjs?v=1e57e6";
import { joinSession } from "./watch-session.mjs?v=19ef791";
/**
* @param {HTMLInputElement} field

View File

@ -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";
/**

View File

@ -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();