Compare commits

..

No commits in common. "941949906d72b0e653939e23295eee2645cbc009" and "fba47e594361bc27df343cb431088c4aa15c41bf" have entirely different histories.

9 changed files with 15 additions and 15 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=e9a1b" />
</head>
<body>
@ -47,6 +47,6 @@
</form>
</div>
<script type="module" src="/create.mjs?v=1e57e6"></script>
<script type="module" src="/create.mjs?v=e9a1b"></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=e9a1b";
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=e9a1b" />
</head>
<body>
@ -64,6 +64,6 @@
</form>
</div>
<script type="module" src="/main.mjs?v=1e57e6"></script>
<script type="module" src="/main.mjs?v=e9a1b"></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=e9a1b";
import { emojify, emojis } from "./emojis.mjs?v=e9a1b";
function insertAtCursor(input, textToInsert) {
const isSuccess = document.execCommand("insertText", false, textToInsert);

View file

@ -1,4 +1,4 @@
import { createSession } from "./watch-session.mjs?v=1e57e6";
import { createSession } from "./watch-session.mjs?v=e9a1b";
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=e9a1b";
/**
* @param {HTMLInputElement} field

View file

@ -1,9 +1,9 @@
import { setupVideo } from "./video.mjs?v=1e57e6";
import { setupVideo } from "./video.mjs?v=e9a1b";
import {
setupChat,
logEventToChat,
updateViewerList,
} from "./chat.mjs?v=1e57e6";
} from "./chat.mjs?v=e9a1b";
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=e9a1b";
const main = () => {
setupJoinSessionForm();

View file

@ -212,14 +212,14 @@ button.small-button {
}
#chatbox {
padding: 0.5em 0.5em;
padding: 0.5em 2em;
overflow-y: scroll;
flex-shrink: 1;
flex-grow: 1;
}
#viewer-list {
padding: 0.5em 0.5em;
padding: 0.5em 2em;
/* TODO: turn this into max-height instead of fixed height without breaking the chatbox height */
overflow-y: scroll;
border-bottom: var(--fg);
@ -238,7 +238,7 @@ button.small-button {
}
#chatbox-send {
padding: 0 0.5em;
padding: 0 2em;
padding-bottom: 0.5em;
position: relative;
}