mirror of
https://github.com/imgfloat/server.git
synced 2026-02-05 03:39:26 +00:00
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
const channelNameInput = document.getElementById("channel-search");
|
|
|
|
function onOpenOverlayButtonClick(event) {
|
|
event.preventDefault();
|
|
const channelName = channelNameInput.value.trim().toLowerCase();
|
|
if (channelName) {
|
|
const overlayUrl = `/view/${channelName}/broadcast`;
|
|
window.location.href = overlayUrl;
|
|
}
|
|
}
|