validateur validé

This commit is contained in:
2024-06-17 18:43:13 +02:00
parent 6b9efb4dd0
commit d06ea90853
18 changed files with 348 additions and 313 deletions

View File

@@ -47,3 +47,12 @@ function sortAlbums(column, order) {
url += "?sort=" + column + "&order=" + order;
window.location.href = url;
}
function toggleCheckboxesPlaylist(filterType) {
var checkboxes = document.getElementById(filterType + '-checkboxes-playlist');
if (checkboxes.style.display === 'none' || checkboxes.style.display === '') {
checkboxes.style.display = 'block';
} else {
checkboxes.style.display = 'none';
}
}