]> source.dussan.org Git - gwtquery.git/commitdiff
Bugfix: loop when calling ajax method. Fixes issue 174
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Fri, 1 Mar 2013 09:46:28 +0000 (10:46 +0100)
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Fri, 1 Mar 2013 09:46:28 +0000 (10:46 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java

index d130b50e013f6009776eaa21df9e605fd0b5634c..47370ef49599b6ecb753b1c0ddb0a70032f7be44 100644 (file)
@@ -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);
   }
 
   /**