another bugfix in new design of calendar

This commit is contained in:
Georg Ehrke 2011-09-02 21:29:59 +02:00
parent 1940bc3dc0
commit 6eff001ebb
1 changed files with 3 additions and 6 deletions

View File

@ -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(){