Course sticks on Loading...never launches

Safari's latest update changed the way they load the frameset ... the initial thread loads the applet in the TM frame and then it does the redirect of the content frameset to the first page of the content. However, the content frameset was loaded but the "Loading screen" never displayed ... so then it finally loads and replaces the first page of the content. It happens so fast that it looks like the content hangs ... when in reality it works.For the time being, the easy change is to hand edit the titlemgr.html file and change the:ObjLayerActionGoTo( redirPage, "contentframe" )to:setTimeout( 'ObjLayerActionGoTo( "' + redirPage + '", "contentframe" )', 1 )What this does is get the swap out of the content frame off the init thread which will then load the "Loading" page into the content frameset. When the timer goes off (1 millisecond later), the content frameset will be swapped out and replaced with the actual content. I know ... it's not graceful ... but it works.TimEdited By: Verrelli on 2005-11-4 10:1:29

Discussions have been disabled for this post