diff options
author | Manuel Carrasco Moñino <manuel.carrasco.m@gmail.com> | 2013-11-09 16:42:07 +0100 |
---|---|---|
committer | Manuel Carrasco Moñino <manuel.carrasco.m@gmail.com> | 2013-11-09 16:42:07 +0100 |
commit | aa84f6dbdf6399aeaa6f34b7ea6dc114e60dbaeb (patch) | |
tree | 29e0ec75c7571b78067401fc701ea18d0d183662 | |
parent | 5deaf203c8dfaf3dc04fe5c1ab91f6a30a72e4af (diff) | |
download | gwtquery-aa84f6dbdf6399aeaa6f34b7ea6dc114e60dbaeb.tar.gz gwtquery-aa84f6dbdf6399aeaa6f34b7ea6dc114e60dbaeb.zip |
split long line
-rwxr-xr-x | gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/ClipAnimation.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/ClipAnimation.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/ClipAnimation.java index a694e509..2285230c 100755 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/ClipAnimation.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/ClipAnimation.java @@ -59,7 +59,8 @@ public class ClipAnimation extends PropertiesAnimation { private Function[] funcs; private Effects g; - public ClipAnimation(Element elem, Action a, Corner c, Direction d, Easing easing, Properties p, final Function... funcs) { + public ClipAnimation(Element elem, Action a, Corner c, Direction d, Easing easing, + Properties p, final Function... funcs) { super(easing, elem, p, funcs); if (a == Action.TOGGLE) { a = GQuery.$(elem).isVisible() ? Action.HIDE : Action.SHOW; |