Fixed invisible "Add all" button in browse page

This commit is contained in:
Dafan Zhai 2021-03-07 20:07:57 +01:00
parent df5a48f99f
commit efa4d4443f
2 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,6 @@
</ol>
<div class="col-md-12" id="filter">
<button id="add-all-songs" class="btn btn-primary pull-right">Add all</button>
</div>

View File

@ -78,6 +78,7 @@ var app = $.sammy(function() {
socket.send('MPD_API_GET_BROWSE,'+pagination+','+(browsepath ? browsepath : "/"));
// Don't add all songs from root
if (browsepath) {
$('#filter').append('<button id="add-all-songs" class="btn btn-primary pull-right">Add all</button>');
var add_all_songs = $('#add-all-songs');
add_all_songs.off(); // remove previous binds
add_all_songs.on('click', function() {