From: SourceForge.net <no...@so...> - 2005-07-29 19:35:37
|
Bugs item #567293, was opened at 2002-06-11 00:24 Message generated for change (Comment added) made by doug_melvin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=567293&group_id=5757 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: DynAPI 2 Browser-Specific Group: None Status: Open Resolution: None Priority: 5 Submitted By: Igor Tsigelnik (tsigelnik) Assigned to: Nobody/Anonymous (nobody) Summary: LoadPanel error in IE6(line 188) Initial Comment: (line 188 Object required) Error only in IE6 when try to load file in LoadPanel To resolve problem I change line 16 from: this.isIFrame=!(is.ie5 && is.platform=='win32'); to: this.isIFrame=!((is.ie6 || is.ie5) && is.platform=='win32'); ---------------------------------------------------------------------- Comment By: Doug Melvin (doug_melvin) Date: 2005-07-29 12:35 Message: Logged In: YES user_id=184788 how about this.isIFrame=!((is.ie && !is.ie4) && is.platform=='win32'); this will effect future versions such as IE 7 or 8 or 22 :-P Holey crap.. just realised this is for DynAPI 2.. LOL.. is anyone actually patching 2.x for distrobution? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=567293&group_id=5757 |