brainblow commited on
Commit
4382e6e
1 Parent(s): 071e470

Update public/index.html

Browse files
Files changed (1) hide show
  1. 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 CofTV...</div>
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">☕ CofTV </div>
26
- <div class="text-md">👉 Текущий канал:</div>
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('Иницилизация CofTV')
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