[FIX] web_calendar: update non-minified version of 'dhtmlxscheduler_minical' to fix offsetHeight < 0px

bzr revid: xal@openerp.com-20120329110839-3jvur9msnwwl7exu
This commit is contained in:
Xavier ALT 2012-03-29 13:08:39 +02:00
parent 4123078a82
commit be890ed691
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ scheduler._render_calendar=function(obj,sd,conf, previous){
if (!previous)
obj.appendChild(d);
d.childNodes[1].style.height = (d.childNodes[1].childNodes[0].offsetHeight-1)+"px"; // dhx_year_week should have height property so that day dates would get correct position. dhx_year_week height = height of it's child (with the day name)
d.childNodes[1].style.height = g.childNodes[1].childNodes[0].offsetHeight <= 0 ? "0px" : (d.childNodes[1].childNodes[0].offsetHeight-1)+"px"; // dhx_year_week should have height property so that day dates would get correct position. dhx_year_week height = height of it's child (with the day name)
/*restore*/ this._cols=temp; this._mode = temp2; this._colsS = temp3; this._min_date=temp4; this._max_date=temp5; scheduler._date = temp6; ts.month_day=temp7;
return d;