CC-4424: Clicking "edit" on playlist allows you to preview tracks that should be disabled
- fixed
This commit is contained in:
parent
43503475fd
commit
d93fcec490
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue