From af7b2d5347aa15a0f8e25f2caea7b6cb87eef9cf Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Tue, 30 Apr 2013 12:11:37 -0400 Subject: [PATCH] IM-629 -fix using instance id instead of show id --- airtime_mvc/public/js/airtime/schedule/schedule.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/schedule/schedule.js b/airtime_mvc/public/js/airtime/schedule/schedule.js index 9a57c7eff..add20984a 100644 --- a/airtime_mvc/public/js/airtime/schedule/schedule.js +++ b/airtime_mvc/public/js/airtime/schedule/schedule.js @@ -354,8 +354,8 @@ $(document).ready(function() { callback = function() { - $.post(oItems.schedule.url, {format: "json", id: data.id}, function(json){ - buildScheduleDialog(json, data.id); + $.post(oItems.schedule.url, {format: "json", id: data.showId}, function(json){ + buildScheduleDialog(json, data.showId); }); };