CC-4424: Clicking "edit" on playlist allows you to preview tracks that should be disabled

- fixed
This commit is contained in:
James 2012-09-13 17:09:10 -04:00
parent 43503475fd
commit d93fcec490
1 changed files with 2 additions and 2 deletions

View File

@ -307,6 +307,7 @@ var AIRTIME = (function(AIRTIME){
setCueEvents(); setCueEvents();
setFadeEvents(); setFadeEvents();
setModified(json.modified); setModified(json.modified);
AIRTIME.playlist.validatePlaylistElements();
redrawLib(); redrawLib();
} }
@ -409,8 +410,6 @@ var AIRTIME = (function(AIRTIME){
$pl.delegate(".spl_cue", $pl.delegate(".spl_cue",
{"click": openCueEditor}); {"click": openCueEditor});
mod.validatePlaylistElements();
$pl.delegate(".spl_block_expand", $pl.delegate(".spl_block_expand",
{"click": function(ev){ {"click": function(ev){
@ -773,6 +772,7 @@ var AIRTIME = (function(AIRTIME){
}()); }());
$pl.find("#spl_sortable").sortable(sortableConf); $pl.find("#spl_sortable").sortable(sortableConf);
AIRTIME.playlist.validatePlaylistElements();
} }
mod.fnNew = function() { mod.fnNew = function() {