cc-2211:changes-to-playlist-not-shown

There was a timing issue
Moved redrawing part into callback function.
This commit is contained in:
James Moon 2011-04-29 11:08:10 -07:00
parent d9ecb965bb
commit 615c6e18f5
1 changed files with 3 additions and 3 deletions

View File

@ -363,11 +363,11 @@ function createPlaylistMetaForm(json) {
$.post(url, data, function(json){
openDiffSPL(json);
//redraw the library list
dt = $("#library_display").dataTable();
dt.fnStandingRedraw();
})
//redraw the library list
dt = $("#library_display").dataTable();
dt.fnStandingRedraw();
});
$("#side_playlist")