fix JS syntax error

This commit is contained in:
Brian Smith 2013-09-05 22:31:25 -04:00
parent c0e139c107
commit eab8a4e190
1 changed files with 2 additions and 2 deletions

View File

@ -406,11 +406,11 @@
// Show settings icons only for my tracks
var $trackSettings = $('div[mixer-id="' + mixer.id + '"].track-icon-settings');
if (myTrack) {
trackSettings.show();
$trackSettings.show();
myTracks.push(trackData);
}
else {
trackSettings.hide();
$trackSettings.hide();
}
// TODO: UNCOMMENT THIS WHEN TESTING LOCALLY IN BROWSER
//myTracks.push(trackData);