From 23142cf01ae3b67490ce11f83248a382011b532f Mon Sep 17 00:00:00 2001 From: james Date: Mon, 14 Jun 2010 16:20:25 +0000 Subject: [PATCH] Hide events that are not in the time frame defined by the schedule --- admin/schedule.php | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/admin/schedule.php b/admin/schedule.php index 10da4092..dec5416d 100644 --- a/admin/schedule.php +++ b/admin/schedule.php @@ -197,14 +197,18 @@ var tablecellid=eventobj.hour+'_'+eventobj.minute+'_'+eventobj.location; - var eheight=((eventobj.duration/15)*)-; - var ewidth=$("#"+tablecellid).width()-; - - var p=$("#"+tablecellid).offset(); - $("#"+item.id).css(p); - $("#"+item.id).show(); - $("#"+item.id).height(eheight); - $("#"+item.id).width(ewidth); + if($("#"+tablecellid).length) { + var eheight=((eventobj.duration/15)*)-; + var ewidth=$("#"+tablecellid).width()-; + var p=$("#"+tablecellid).offset(); + $("#"+item.id).css(p); + $("#"+item.id).show(); + $("#"+item.id).height(eheight); + $("#"+item.id).width(ewidth); + } + else { + $("#"+item.id).hide(); + } } ); }