]> source.dussan.org Git - gwtquery.git/commitdiff
Remove useless method from Effects plugin
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Mon, 4 Nov 2013 20:43:13 +0000 (21:43 +0100)
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Mon, 4 Nov 2013 20:43:13 +0000 (21:43 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Effects.java

index 44deecb5022bc3c232509098b14879367ac902b2..d8b07659f28bba6906d73e4fde9cbf57306dbe2e 100755 (executable)
@@ -308,7 +308,6 @@ public class Effects extends QueuePlugin<Effects> {
   public Effects clip(final ClipAnimation.Action a,
       final ClipAnimation.Corner c, final ClipAnimation.Direction d,
       final int duration, final Function... f) {
-
     for (Element e : elements()) {
       queueAnimation(e, new ClipAnimation(e, a, c, d, f), duration);
     }
@@ -575,27 +574,6 @@ public class Effects extends QueuePlugin<Effects> {
     return animate("height: 'hide'", millisecs, f);
   }
 
-
-  /**
-   * Toggle displaying each of the set of matched elements.
-   *
-   * @param showOrHide A Boolean indicating whether to show or hide the
-   *          elements.
-   */
-  // maybe move this function in GQuery class directly ?
-  public Effects toggle(boolean showOrHide) {
-    for (Element element : elements()) {
-      GQuery $element = $(element);
-      if (!showOrHide) {
-        $element.hide();
-      } else {
-        $element.show();
-      }
-
-    }
-    return this;
-  }
-
   /**
    * Toggle displaying each of the set of matched elements by animating the
    * width, height, and opacity of the matched elements simultaneously. When