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:
parent
7958b4e8bd
commit
758f399636
1 changed files with 2 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue