From 822cdaa3eb080f975a6917794da309431e999d92 Mon Sep 17 00:00:00 2001
From: amd64fox <62529699+amd64fox@users.noreply.github.com>
Date: Thu, 27 Feb 2025 02:11:40 +0300
Subject: [PATCH] Update index.html
---
table/index.html | 15 +++++----------
1 file changed, 5 insertions(+), 10 deletions(-)
diff --git a/table/index.html b/table/index.html
index a3eb8a2..fda57e7 100644
--- a/table/index.html
+++ b/table/index.html
@@ -5,7 +5,7 @@
Official Spotify full installers
-
+
- Versions
@@ -1070,8 +1065,8 @@
async function initializeApp() {
try {
- // 1. Сначала загружаем основные данные JSON
- const response = await fetch('https://raw.githubusercontent.com/amd64fox/LoaderSpot/refs/heads/main/versions.json');
+ // 1. Загружаем основные данные JSON
+ const response = await fetch('versions.json');
const data = await response.json();
container.innerHTML = ''; // Очищаем "Загрузка данных..."
@@ -1245,7 +1240,7 @@
versionText.innerHTML = `${version.version.short}${version.version.full}`;
versionText.addEventListener('click', () => {
navigator.clipboard.writeText(version.version.full)
- .then(() => showToast('Скопировано в буфер обмена'))
+ .then(() => showToast('Copied to clipboard'))
.catch(() => fallbackCopyTextToClipboard(version.version.full));
});
versionCell.appendChild(versionText);