It would also be nice if Elemental 2 also has an easy way to selectively 
knock out certain fields/methods in the code generator. I don't know how 
many times I'll be using code completion and accidentally end up writing 
something like 

   div.setInnerText("click me")

because innerText is available in WebKit when I should have been using

   div.setTextContent("click me")

which is cross-platform. I would like to be able to easily go in and 
regenerate my own Elemental with innerText (among others) removed so that I 
can't accidentally do that.

There's also the issue of dealing with variants like 
webkitRequestAnimationFrame(), mozRequestAnimationFrame(), 
msRequestAnimationFrame(), and requestAnimationFrame() without having four 
different methods. I guess I can just polyfill stuff like that though.

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/01214f04-0b6a-48bc-bb57-530b29c539ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to