ArcBees / gwtquery

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

Selector engine is not always initialized #265

Closed jDramaix closed 10 years ago

jDramaix commented 10 years ago

If you use GQuery without any String selector, you can throw a NullPointerException because the Selector Engine is not initialized.

Example :

GQuery.contains(element1, element2);

or

$(element1).has(element2);