Patches item #421184, was updated on 2001-05-03 15:07 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=305757&aid=421184&group_id=5757 Category: DynAPI 2 API Group: None Status: Open Resolution: None Priority: 5 Submitted By: Christof Pohl (chripo) Assigned to: Nobody/Anonymous (nobody) Summary: Bugfix for DynLayer Initial Comment: Line 138 of "dynlayer.js" currently reads: if (is.ie5 && is.win32 && this.elm.children.length>0) this.elm.removeNode(true); Because "is.win32" is not defined (and therefore the whole statement will always return false), this line should be: if (is.ie5 && is.platform=="win32" && this.elm.children.length>0) this.elm.removeNode(true); Best regards, Christof ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=305757&aid=421184&group_id=5757 _______________________________________________ Dynapi-Dev mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/dynapi-dev