CC-5108 : Waveform Editor UI

error check for if both tracks cannot be decoded.
This commit is contained in:
Naomi Aro 2013-05-24 11:27:56 -04:00
parent f5e03db9fe
commit 69f6295553

View file

@ -1258,7 +1258,12 @@ var AIRTIME = (function(AIRTIME){
playlistEditor.stop();
if (json.length === 1) {
if (json.length === 0)
{
id1 = undefined;
id2 = undefined;
}
else if (json.length === 1) {
fade = json[0]["fades"][0];