The problem turns out to be that the script I'm adding uses
document.write, which can only be used to add to the page while the
page is being built. After DOMContentReady, document.write opens a new
output stream (too lazy to go back and check the right browser speak
here) and writing to it replaces the entire page. So we'll need to add
our scripts to the page using a different approach entirely. Right now
I'm considering running the script in an iframe or object tag.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---