From 79bc927a30967df1b0fda140d4504e2418a16711 Mon Sep 17 00:00:00 2001 From: denise Date: Fri, 10 May 2013 16:07:54 -0400 Subject: [PATCH] CC-5130: Calendar -> Linked icon disappears if show is full --- .../js/airtime/schedule/full-calendar-functions.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js b/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js index db5eadd53..be42c53b7 100644 --- a/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js +++ b/airtime_mvc/public/js/airtime/schedule/full-calendar-functions.js @@ -283,6 +283,12 @@ function eventRender(event, element, view) { .find(".fc-event-time") .before(''); } + } else { + if (event.linked) { + $(element) + .find(".fc-event-time") + .before(''); + } } } else if (view.name === 'month') { if (event.show_empty === 1) { @@ -305,6 +311,12 @@ function eventRender(event, element, view) { .find(".fc-event-title") .after(''); } + } else { + if (event.linked) { + $(element) + .find(".fc-event-title") + .after(''); + } } } }