From 6eff001ebba9b4db8aba9cabc3dc05d5828e10e7 Mon Sep 17 00:00:00 2001
From: Georg Ehrke <georg.stefan.germany@googlemail.com>
Date: Fri, 2 Sep 2011 21:29:59 +0200
Subject: [PATCH] another bugfix in new design of calendar

---
 apps/calendar/js/calendar.js | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js
index de5066cdc44..265c66a25b0 100755
--- a/apps/calendar/js/calendar.js
+++ b/apps/calendar/js/calendar.js
@@ -613,24 +613,21 @@ Calendar={
 				}
 				if(oc_cal_rows == 4){
 					for(var i = 1;i <= 6;i++){
-						$("#onemonthview_week_" + i).height("23%");
+						$("#onemonthview_week_" + String(i)).height("23%");
 					}
-					$("td.thisday").height("23%");
 				}
 				if(oc_cal_rows == 5) {
 					$("#onemonthview_week_5").css('display', "table-row");
 					for(var i = 1;i <= 6;i++){
-						$("#onemonthview_week_" + i).height("18%");
+						$("#onemonthview_week_" + String(i)).height("18%");
 					}
-					$("td.thisday").height("18%");
 				}
 				if(oc_cal_rows == 6) {
 					$("#onemonthview_week_5").css('display', "table-row");
 					$("#onemonthview_week_6").css('display', "table-row");
 					for(var i = 1;i <= 6;i++){
-						$("#onemonthview_week_" + i).height("14%");
+						$("#onemonthview_week_" + String(i)).height("14%");
 					}
-					$("td.thisday").height("14%");
 				}
 			},
 			showEvents:function(){
-- 
GitLab