Update public/index.html
Browse files- public/index.html +7 -7
public/index.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
| 8 |
<body
|
| 9 |
x-data="app()" x-init="init()"
|
| 10 |
class="fixed inset-0 bg-[rgb(0,0,0)] flex flex-col w-full items-center justify-start">
|
| 11 |
-
<div x-show="!enabled">Loading
|
| 12 |
|
| 13 |
<div
|
| 14 |
x-show="enabled && showToolbar"
|
|
@@ -22,8 +22,8 @@
|
|
| 22 |
style="text-shadow: 0px 0px 3px #000000">
|
| 23 |
|
| 24 |
<div class="flex text-xl space-x-2">
|
| 25 |
-
<div class="text-xl"
|
| 26 |
-
<div class="text-md">👉
|
| 27 |
<template x-for="chan in channels">
|
| 28 |
<div
|
| 29 |
class="text-xl mr-2"
|
|
@@ -122,7 +122,7 @@ function app() {
|
|
| 122 |
*/
|
| 123 |
random: {
|
| 124 |
id: 'random',
|
| 125 |
-
label: '
|
| 126 |
audience: 0,
|
| 127 |
online: false,
|
| 128 |
visible: true,
|
|
@@ -133,7 +133,7 @@ function app() {
|
|
| 133 |
},
|
| 134 |
comedy: {
|
| 135 |
id: 'comedy',
|
| 136 |
-
label: '
|
| 137 |
audience: 0,
|
| 138 |
online: false,
|
| 139 |
visible: true,
|
|
@@ -144,7 +144,7 @@ function app() {
|
|
| 144 |
},
|
| 145 |
documentary: {
|
| 146 |
id: 'documentary',
|
| 147 |
-
label: '
|
| 148 |
audience: 0,
|
| 149 |
online: false,
|
| 150 |
visible: true,
|
|
@@ -217,7 +217,7 @@ function app() {
|
|
| 217 |
return
|
| 218 |
}
|
| 219 |
this.initialized = true
|
| 220 |
-
console.log('
|
| 221 |
|
| 222 |
const urlParams = new URLSearchParams(window.location.search)
|
| 223 |
|
|
|
|
| 8 |
<body
|
| 9 |
x-data="app()" x-init="init()"
|
| 10 |
class="fixed inset-0 bg-[rgb(0,0,0)] flex flex-col w-full items-center justify-start">
|
| 11 |
+
<div x-show="!enabled">Loading AI-TV...</div>
|
| 12 |
|
| 13 |
<div
|
| 14 |
x-show="enabled && showToolbar"
|
|
|
|
| 22 |
style="text-shadow: 0px 0px 3px #000000">
|
| 23 |
|
| 24 |
<div class="flex text-xl space-x-2">
|
| 25 |
+
<div class="text-xl">🤖 AI-TV </div>
|
| 26 |
+
<div class="text-md">👉 Current channel:</div>
|
| 27 |
<template x-for="chan in channels">
|
| 28 |
<div
|
| 29 |
class="text-xl mr-2"
|
|
|
|
| 122 |
*/
|
| 123 |
random: {
|
| 124 |
id: 'random',
|
| 125 |
+
label: 'All',
|
| 126 |
audience: 0,
|
| 127 |
online: false,
|
| 128 |
visible: true,
|
|
|
|
| 133 |
},
|
| 134 |
comedy: {
|
| 135 |
id: 'comedy',
|
| 136 |
+
label: 'Comedy',
|
| 137 |
audience: 0,
|
| 138 |
online: false,
|
| 139 |
visible: true,
|
|
|
|
| 144 |
},
|
| 145 |
documentary: {
|
| 146 |
id: 'documentary',
|
| 147 |
+
label: 'Documentary',
|
| 148 |
audience: 0,
|
| 149 |
online: false,
|
| 150 |
visible: true,
|
|
|
|
| 217 |
return
|
| 218 |
}
|
| 219 |
this.initialized = true
|
| 220 |
+
console.log('AI-TV initialization')
|
| 221 |
|
| 222 |
const urlParams = new URLSearchParams(window.location.search)
|
| 223 |
|