From 758f39963606f2a54c9d75af575a36962b1bc41c Mon Sep 17 00:00:00 2001 From: Kristy Fournier <124598538+kristy-fournier@users.noreply.github.com> Date: Fri, 17 Oct 2025 15:49:02 -0400 Subject: [PATCH] tab to songs and playlist items this actually isnt accessible, but it is something to think about. I don't personally know anyone who needs tab navigation but i know it's good to have and use --- Client/scripts.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Client/scripts.js b/Client/scripts.js index 6149c98..19d367f 100644 --- a/Client/scripts.js +++ b/Client/scripts.js @@ -119,6 +119,7 @@ async function searchSongs(searchTerm){ let newItem = document.createElement("div"); newItem.className = "item"; newItem.id = fileName; + newItem.tabIndex = 0; let image = document.createElement("img"); try { if (currentSongInJSON["art"] == null) { @@ -263,6 +264,7 @@ async function generateVisualPlaylist(conditions="") { let newItem = document.createElement("div"); newItem.className = "item"; newItem.id = fileName; + newItem.tabIndex = 0; let image = document.createElement("img"); try { if (playlist[i]["art"] == null) {