CC-4379: Playlist Builder: Click Save will cause playlist disappear from right side

-fixed
This commit is contained in:
denise 2012-09-10 17:53:55 -04:00
parent bba001c0db
commit 2474d50e9f
1 changed files with 3 additions and 1 deletions

View File

@ -635,7 +635,9 @@ var AIRTIME = (function(AIRTIME){
if (json.error !== undefined) {
alert(json.error);
}
AIRTIME.playlist.fnOpenPlaylist(json);
if (json.html !== undefined) {
AIRTIME.playlist.fnOpenPlaylist(json);
}
setModified(json.modified);
if (obj_type == "block") {
callback(data, "save");