Hi

I am suign the mini calendar ,
In IE the mini calendar not working,
Here i have attached the screen shots between IE and Mozhila...

In mozhila, the calendar display very fine, But in IE the mini calendar not working when i hit the next navigation...

Thanks

Comments

bharanikumariyerphp’s picture

Problem Fixed

plz comment these line in eventblock.js in EVENT module

// Keep block at it's current width/height to make the update less disruptive
//this.styleHeight = $(element).height();
//this.styleWidth = $(element).width();
//$(element).height(element.offsetHeight+"px");
//$(element).width(element.offsetWidth+"px");
//alert('kkk');

stefanw’s picture

Status: Needs work » Needs review
StatusFileSize
new565 bytes

The reason is that element is accessed as if it were a DOM node object, while it's really a JQuery object. To access its offsetHeight and offsetWidth properties, element[0] should be used instead.

The following patch fixes the JavaScript errors in MSIE.
(tested with IE6, IE7, FF2, Opera)

killes@www.drop.org’s picture

Priority: Critical » Minor

Thanks, fixed in 5.1-dev! this was already fixed in the 5.2 version.

Also, IE problems are never critical.

dboulet’s picture

Status: Needs review » Fixed

Marking as fixed, as per #3.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.