Added lossless tag to search

This commit is contained in:
Kristy Fournier 2026-03-04 14:28:12 -05:00
parent d96014c24d
commit f35b074543

View file

@ -198,12 +198,12 @@ async function searchSongs(searchTerm){
newItem.appendChild(head3); newItem.appendChild(head3);
newItem.appendChild(head4); newItem.appendChild(head4);
// I like this concept but i'm leaving it out for now // I like this concept but i'm leaving it out for now
// if(currentSongInJSON.lossless === 1) { if(currentSongInJSON.lossless === 1) {
// let losslesstag = document.createElement("p"); let losslesstag = document.createElement("p");
// losslesstag.textContent = "Ⓛ"; losslesstag.textContent = "Ⓛ";
// losslesstag.classList.add("lossless-tag"); losslesstag.classList.add("lossless-tag");
// newItem.appendChild(losslesstag); newItem.appendChild(losslesstag);
// } }
document.getElementById("songlist").appendChild(newItem); document.getElementById("songlist").appendChild(newItem);
} }