]> source.dussan.org Git - gwtquery.git/commitdiff
add fadeToggle() shortcut method in GQuery class
authorJulien Dramaix <julien.dramaix@gmail.com>
Wed, 13 Apr 2011 12:35:51 +0000 (12:35 +0000)
committerJulien Dramaix <julien.dramaix@gmail.com>
Wed, 13 Apr 2011 12:35:51 +0000 (12:35 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java
gwtquery-core/src/main/java/com/google/gwt/query/client/LazyGQuery.java

index e946c434e167819377427dbcad3404d488096440..764720982e97bf2b142359e31acbf20f6986c647 100644 (file)
@@ -1741,6 +1741,17 @@ public class GQuery implements Lazy<GQuery, LazyGQuery> {
     return as(Effects).fadeOut(millisecs, f);\r
   }\r
 \r
+  /**\r
+   * Toggle the visibility of all matched elements by adjusting their opacity and\r
+   * firing an optional callback after completion. Only the opacity is adjusted for\r
+   * this animation, meaning that all of the matched elements should already\r
+   * have some form of height and width associated with them.\r
+   */\r
+  public Effects fadeToggle(int millisecs, Function... f) {\r
+    return as(Effects).fadeToggle(millisecs, f);\r
+  }\r
+  \r
+  \r
   /**\r
    * Removes all elements from the set of matched elements that do not match the\r
    * specified function. The function is called with a context equal to the\r
index a499cff90a84617ce6f12a16c0f9ebfe00ef92c8..db127353f591a5e3266c44f51e87aa4d92c75e27 100644 (file)
@@ -925,6 +925,14 @@ public interface LazyGQuery<T> extends LazyBase<T>{
    */
   LazyGQuery<T> fadeOut(int millisecs, Function... f);
 
+  /**
+   * Toggle the visibility of all matched elements by adjusting their opacity and
+   * firing an optional callback after completion. Only the opacity is adjusted for
+   * this animation, meaning that all of the matched elements should already
+   * have some form of height and width associated with them.
+   */
+  Effects fadeToggle(int millisecs, Function... f);
+
   /**
    * Removes all elements from the set of matched elements that do not match the
    * specified function. The function is called with a context equal to the