validateur validé
This commit is contained in:
@@ -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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user