* fix for VRFS-901 - when you remove a track there was a typo in the jamClient reference

This commit is contained in:
Seth Call 2013-12-12 14:57:54 +00:00
parent 6b4e42dfc5
commit a30bc2a022
1 changed files with 2 additions and 2 deletions

View File

@ -613,7 +613,7 @@
// track 2 was removed // track 2 was removed
if (myTrackCount === 2) { if (myTrackCount === 2) {
logger.debug("Deleting track " + myTracks[1].trackId); logger.debug("Deleting track " + myTracks[1].trackId);
client.TrackSetCount(1); context.jamClient.TrackSetCount(1);
//sessionModel.deleteTrack(sessionId, myTracks[1].trackId); //sessionModel.deleteTrack(sessionId, myTracks[1].trackId);
} }
} }
@ -830,4 +830,4 @@
return this; return this;
}; };
})(window,jQuery); })(window,jQuery);