]> source.dussan.org Git - gwtquery.git/commitdiff
Adding a missing method which made gquery.queue() enter in a loop
authorManolo Carrasco <manolo@apache.org>
Wed, 10 Aug 2011 22:33:15 +0000 (22:33 +0000)
committerManolo Carrasco <manolo@apache.org>
Wed, 10 Aug 2011 22:33:15 +0000 (22:33 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/QueuePlugin.java

index dd3b2d170ada1c2879ec7471adef8fb7ebdb2cb6..77ce4b1d661f6035cc809144467c3129c017b84b 100644 (file)
@@ -217,6 +217,19 @@ public class QueuePlugin<T extends QueuePlugin<?>> extends GQuery {
     return stop(DEFAULT_NAME, clearQueue, false);
   }
   
+  /**
+   * Stop the function which is currently in execution and depending on the
+   * value of the parameter: 
+   * - remove it from the effects queue and start the next one.
+   * - or remove all functions in the effects queue.
+   * 
+   * If the parameter jump is true, the current stopped effect will set
+   * the final css properties like if the effect would be completely executed.  
+   */
+  public T stop(boolean clearQueue, boolean jumpToEnd) {
+    return stop(DEFAULT_NAME, clearQueue, jumpToEnd);
+  }
+  
   /**
    * Stop the function which is currently in execution and depending on the
    * value of the parameter: