I think this was causing some issues with click events not being
recognized, so I ended up adding this code to DOMImplWebkit to fix it:
@Override
> public native EventTarget eventGetTarget(NativeEvent evt) /*-{
> var target = evt.target;
> if (target && target.nodeType == 3) {
> target = target.parentNode;
> }
> return target;
> }-*/;
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/-j7Ml9c94voJ.
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.