Patches item #412268, was updated on 2001-03-29 11:36
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305757&aid=412268&group_id=5757

Category: Event
Group: None
>Status: Closed
Priority: 5
Submitted By: Doug Melvin (doug_melvin)
Assigned to: Nobody/Anonymous (nobody)
Summary: Document Dimension updating on resize

Initial Comment:
DynAPI.js
NOTE: I did NOT add NS reCreateAll
Original function:
DynAPIObject.prototype.resizeHandler = function() {
        eval(this.onResizeCodes.join(";"));
        if (this.onResize) this.onResize();
}

Updated Function:

DynAPIObject.prototype.resizeHandler = function() {
        DynAPI.document.findDimensions();
        eval(this.onResizeCodes.join(";"));
        if (this.onResize) this.onResize();
}


----------------------------------------------------------------------

>Comment By: Robert Rainwater (rainwater)
Date: 2001-03-30 00:21

Message:
Logged In: YES 
user_id=16618

This has been fixed in CVS.  The change was made to the
DynDocument.js:

DynAPI.addResizeFunction("if (DynAPI.document)
DynAPI.document.findDimensions();");

This works in IE and Mozilla.  The DynAPIObject does not
have DynLayer or DynDocument related stuff anymore, so thats
why the change was made in DynDocument.

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=305757&aid=412268&group_id=5757

_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Reply via email to