ArcBees / gwtquery

A jQuery clone for GWT, and much more.
MIT License
85 stars 38 forks source link

Add varargs Node selector #307

Closed spg closed 9 years ago

spg commented 9 years ago

This PR is for the following case:

DivElement div;
SpanElement span;

$(div, span).toggle();

Otherwise, I'd be required to:

$(Lists.newArrayList(div, span)).toggle();
meriouma commented 9 years ago

LGTM (I was thinking of doing the same contribution after seeing @jasonlemay problem ;) )

jasonlemay commented 9 years ago

Hello, what have I done again?

christiangoudreau commented 9 years ago

LGTM

jDramaix commented 9 years ago

@meriouma Could you setup TeamCity to build and run the tests against each PR ?