Closed (fixed)
Project:
Event
Version:
5.x-1.0
Component:
Miscellaneous
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Jul 2008 at 08:21 UTC
Updated:
28 Mar 2010 at 02:30 UTC
Jump to comment: Most recent file
Comments
Comment #1
bharanikumariyerphp commentedProblem 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');
Comment #2
stefanw commentedThe 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)
Comment #3
killes@www.drop.org commentedThanks, fixed in 5.1-dev! this was already fixed in the 5.2 version.
Also, IE problems are never critical.
Comment #4
dboulet commentedMarking as fixed, as per #3.