Julien Dramaix
Julien Dramaix
[google/closure-compiler/blob/master/externs/browser/gecko_dom.js](https://github.com/google/closure-compiler/blob/master/externs/browser/gecko_dom.js) contains standard api defintion that are missing in elemental2-dom. **Contribution is welcome here.** This can be fixed by - adding [google/closure-compiler/blob/master/externs/browser/gecko_dom.js](https://github.com/google/closure-compiler/blob/master/externs/browser/gecko_dom.js) to [elemental2-dom](https://github.com/google/elemental2/blob/master/java/elemental2/dom/BUILD#L103) - Follow the procedure explained in...
`contrib` directory could contain projects following the same structure than elemental2 but created by open source contributors and not officially supported by the Google J2CL team.
Some javascript methods like [Array.prototype.shift](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/shift#Description) are generics. It means they can be called or applied to objects resembling to the type defining the method. In Closure-compiler, the @this annotations in...
It's hard to find information about the last qwtquery release. Before moving to github, we updated a wiki page on google code but as google code is now read only,...
_Original author: [email protected] (September 30, 2011 15:37:34)_ We use a number of static field in GwtQuery. These fields add extra code in the resulting compiled js code. Even if they...
_Original author: [email protected] (July 08, 2013 18:08:24)_ Animating a border-color works fine in all browsers except Firefox. On Firefox I get this error: TypeError: this$static.startColor is undefined _Original issue: http://code.google.com/p/gwtquery/issues/detail?id=186_
_Original author: [email protected] (June 18, 2013 16:39:13)_ I was trying to fade in an element that was styled like this .elem { opacity: 0; } and was wondering why fade...
_Original author: [email protected] (May 08, 2013 13:55:32)_ Inherit Gwtquery AFTER DefaultWidgetSet, so your widgetset xml should looks like this: <module> <inherits name="com.vaadin.DefaultWidgetSet" /> <inherits name="com.google.gwt.query.Query"/> </module> After you compile the...
_Original author: [email protected] (April 16, 2013 07:46:03)_ gwtquery 1.3.3 for below html: <ul> <li> <div> <span>span in div</span> </div> <span>span out of div</span> </li> </ul> with js: $('ul').find("li").each(function(){ var span=...
_Original author: [email protected] (January 09, 2013 07:00:11)_ What steps will reproduce the problem? see attached source. What is the expected output? What do you see instead? First function in empty...