From f6d79b1f5413d6d7d19386659d63f5c9806b44a9 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 3 Jul 2012 14:52:27 -0400 Subject: [PATCH] CC-4063: Timeline -> Add a track to a show will cause another show's cursor to be selected -fixed --- airtime_mvc/public/js/airtime/showbuilder/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/js/airtime/showbuilder/builder.js b/airtime_mvc/public/js/airtime/showbuilder/builder.js index 57b399828..055588eeb 100644 --- a/airtime_mvc/public/js/airtime/showbuilder/builder.js +++ b/airtime_mvc/public/js/airtime/showbuilder/builder.js @@ -693,7 +693,7 @@ var AIRTIME = (function(AIRTIME){ //re-highlight selected cursors before draw took place for (i = 0; i < cursorIds.length; i++) { if (headerFooter[i] == "f") { - $tr = $table.find("tbody tr.sb-footer"); + $tr = $table.find("tbody tr.sb-footer[id="+cursorIds[i]+"][si_id="+showInstanceIds[i]+"]"); } else { $tr = $table.find("tr[id="+cursorIds[i]+"][si_id="+showInstanceIds[i]+"]"); }