aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-03-01 10:46:28 +0100
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-03-01 10:46:28 +0100
commitd8103d128beae7c038fd94631f286c15ad504241 (patch)
tree8c886194979073011d184e851eddf433f83e9605
parent6956ba09be9c67257687e6dcfc81e8d615bf2eab (diff)
downloadgwtquery-d8103d128beae7c038fd94631f286c15ad504241.tar.gz
gwtquery-d8103d128beae7c038fd94631f286c15ad504241.zip
Bugfix: loop when calling ajax method. Fixes issue 174
-rw-r--r--gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
index d130b50e..47370ef4 100644
--- a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
+++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
@@ -403,7 +403,7 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
* Perform an ajax request to the server.
*/
public static void ajax(Properties p) {
- ajax(p);
+ Ajax.ajax(p);
}
/**