Hide dups when refreshing playlists

This commit is contained in:
Gabriel Augendre 2016-04-17 18:33:32 +02:00
parent 3d83406fff
commit 773a501e40

View file

@ -68,8 +68,8 @@ var errorSource = document.getElementById('error-template').innerHTML,
} }
document.getElementById('get-playlists').addEventListener('click', function () { document.getElementById('get-playlists').addEventListener('click', function () {
var currentElement = $(this); var button = $(this);
currentElement.addClass('loading'); button.addClass('loading');
$.ajax({ $.ajax({
url: '/get_playlists', url: '/get_playlists',
data: { data: {
@ -84,7 +84,8 @@ var errorSource = document.getElementById('error-template').innerHTML,
} }
}); });
currentElement.removeClass('loading'); button.removeClass('loading');
$('#dups').hide();
playlistsPlaceholder.innerHTML = playlistsTemplate({ playlistsPlaceholder.innerHTML = playlistsTemplate({
playlists: pl playlists: pl