Update title for all WebUI pages

This commit is contained in:
Alex X
2025-11-26 11:23:16 +03:00
parent 6d1a95a4e3
commit 3ebc115cc5
10 changed files with 11 additions and 10 deletions
+2 -1
View File
@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>go2rtc - HLS</title>
<title>hls - go2rtc</title>
<style>
body {
background-color: black;
@@ -24,6 +24,7 @@
const url = new URL('api/stream.m3u8' + location.search, location.href);
const video = document.getElementById('video');
/* global Hls */
if (Hls.isSupported()) {
const hls = new Hls();
hls.loadSource(url.toString());