CC-2211:changes to playlist not show
Move redraw function into callback function when PL gets deleted from the left window
This commit is contained in:
parent
615c6e18f5
commit
afa51c0d56
|
@ -388,11 +388,12 @@ function deleteSPL() {
|
|||
|
||||
url = '/Playlist/delete-active/format/json';
|
||||
|
||||
$.post(url, noOpenPL);
|
||||
|
||||
//redraw the library list
|
||||
dt = $("#library_display").dataTable();
|
||||
dt.fnStandingRedraw();
|
||||
$.post(url, function(){
|
||||
noOpenPL;
|
||||
//redraw the library list
|
||||
dt = $("#library_display").dataTable();
|
||||
dt.fnStandingRedraw();
|
||||
});
|
||||
}
|
||||
|
||||
function openDiffSPL(json) {
|
||||
|
|
Loading…
Reference in New Issue