From: <no...@so...> - 2001-03-31 22:38:29
|
Bugs item #230055, was updated on 2001-01-25 07:56 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=230055&group_id=5757 Category: DynAPI 2 Browser-Specific Group: None >Status: Closed Priority: 5 Submitted By: Mark Haviland (mhavi) Assigned to: Nobody/Anonymous (nobody) Summary: loadpanel in frameset with NS4... Initial Comment: While I'm not sure that this is related to loadpanel, I had to change to code to get it to work when creating a loadpanel in a 'frameset' doc. Here's the diff: 158c159,167 < while(lyr.parentLayer!=window) lyr=lyr.parentLayer; --- > //while(lyr.parentLayer!=window) { > while(lyr.parentLayer && lyr.parentLayer!=lyr.name) lyr=lyr.parentLayer; > /* 184c193,194 < while(lyr.parentLayer != window) lyr = lyr.parentLayer; --- > //while(lyr.parentLayer != window) lyr = lyr.parentLayer; > while(lyr.parentLayer && lyr.parentLayer!=lyr.name) lyr=lyr.parentLayer; I tested the above change with the doc in the example directory and it worked fine...under Linux that is. -Mark ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=230055&group_id=5757 |