DmitrMakeev commited on
Commit
84cc569
1 Parent(s): 26b7727

Update online.html

Browse files
Files changed (1) hide show
  1. online.html +14 -9
online.html CHANGED
@@ -330,23 +330,28 @@
330
  </div>
331
 
332
 
 
 
333
  <script>
334
  document.getElementById("st_onl").addEventListener("click", function() {
335
- window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/online";
 
 
 
 
 
336
  });
337
  </script>
338
-
339
-
340
  <script>
341
  document.getElementById("st_set").addEventListener("click", function() {
342
- window.location.href = "https://vk-ai-system-flask-inference-api3.hf.space/settings";
 
 
 
 
 
343
  });
344
  </script>
345
-
346
-
347
-
348
-
349
-
350
  <script>
351
  document.getElementById("st_graf").addEventListener("click", function() {
352
  // Получаем основной URL без пути и параметров
 
330
  </div>
331
 
332
 
333
+
334
+
335
  <script>
336
  document.getElementById("st_onl").addEventListener("click", function() {
337
+ // Получаем основной URL без пути и параметров
338
+ var baseUrl = window.location.origin;
339
+ // Добавляем необходимый путь к основному URL
340
+ var targetUrl = baseUrl + "/online";
341
+ // Переходим по сформированному URL
342
+ window.location.href = targetUrl;
343
  });
344
  </script>
 
 
345
  <script>
346
  document.getElementById("st_set").addEventListener("click", function() {
347
+ // Получаем основной URL без пути и параметров
348
+ var baseUrl = window.location.origin;
349
+ // Добавляем необходимый путь к основному URL
350
+ var targetUrl = baseUrl + "/settings";
351
+ // Переходим по сформированному URL
352
+ window.location.href = targetUrl;
353
  });
354
  </script>
 
 
 
 
 
355
  <script>
356
  document.getElementById("st_graf").addEventListener("click", function() {
357
  // Получаем основной URL без пути и параметров