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
This commit is contained in:
Kristy Fournier 2025-10-17 15:49:02 -04:00
parent 7958b4e8bd
commit 758f399636

View file

@ -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) {