Author: pyaschenko
Date: 2007-10-05 08:39:44 -0400 (Fri, 05 Oct 2007)
New Revision: 3280
Modified:
branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
Log:
RF-1072
Modified:
branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js
===================================================================
---
branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2007-10-05
12:37:06 UTC (rev 3279)
+++
branches/3.1.x/ui/calendar/src/main/resources/org/richfaces/renderkit/html/scripts/calendar.js 2007-10-05
12:39:44 UTC (rev 3280)
@@ -1106,6 +1106,17 @@
}
}
//alert(new Date().getTime()-_d.getTime());
+
+ // hack for IE 6.0 //fix 1072
+ if (Richfaces.browser.isIE6)
+ {
+ var element = $(this.id);
+ if (element)
+ {
+ element.style.width = "0px";
+ element.style.height = "0px";
+ }
+ }
},
renderHeader: function()
{