That just introduces more problems. 1) Not maintainable - you have to remember to change it every single time you compile. 2) It's a hack. Without understanding the real cause, you are just asking for more problems later on. The problem could resurface elsewhere & you won't know why & you'll then have multiple places that need editing. 3) The problem is in your code - fix that & you won't have problems. If it's a compiler issue (unlikely in this case), then file a bug & the GWT engineers will fix it for everyone.
PS - just to correct myself from before: on Windows, GWT uses whatever version of IE you have installed. On Thu, May 28, 2009 at 5:48 AM, meng <[email protected]> wrote: > > just edit the compiled script, change > > if (o.nodeType) { > > to > > if (o && o.nodeType) { > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
