From: Manolo Carrasco Date: Thu, 12 Jun 2014 07:55:03 +0000 (+0200) Subject: Dont set units twice. Remove duplicated code X-Git-Tag: gwtquery-project-1.4.3~32^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9306a8684a8febf069920e638589edbd714e5115;p=gwtquery.git Dont set units twice. Remove duplicated code --- diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/PropertiesAnimation.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/PropertiesAnimation.java old mode 100755 new mode 100644 index 88e485ce..0c9d109c --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/PropertiesAnimation.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/PropertiesAnimation.java @@ -334,7 +334,7 @@ public class PropertiesAnimation extends GQAnimation { // g.show(); for (String key : prps.keys()) { String val = prps.getStr(key); - if ((fx = computeFxProp(e, key, val, hidden)) != null) { + if ((fx = getFx(e, key, val, hidden)) != null) { effects.add(fx); resize = resize || "height".equals(key) || "width".equals(key); move = move || "top".equals(key) || "left".equals(key); @@ -350,6 +350,10 @@ public class PropertiesAnimation extends GQAnimation { super.onStart(); } + protected Fx getFx(Element e, String key, String val, boolean hidden) { + return computeFxProp(e, key, val, hidden); + } + @Override public void onUpdate(double progress) { for (int i = 0; i < effects.length(); i++) { diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/TransitionsAnimation.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/TransitionsAnimation.java index 29b73548..e3e1d553 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/TransitionsAnimation.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/effects/TransitionsAnimation.java @@ -22,7 +22,6 @@ import static com.google.gwt.query.client.plugins.effects.ClipAnimation.getNorma import com.google.gwt.dom.client.Element; import com.google.gwt.query.client.Function; import com.google.gwt.query.client.Properties; -import com.google.gwt.query.client.js.JsObjectArray; import com.google.gwt.query.client.plugins.effects.ClipAnimation.Action; import com.google.gwt.query.client.plugins.effects.ClipAnimation.Corner; import com.google.gwt.query.client.plugins.effects.ClipAnimation.Direction; @@ -162,17 +161,17 @@ public class TransitionsAnimation extends PropertiesAnimation { if (part1 != null && !part1.isEmpty()) { double n = "-=".equals(part1) ? -1 : 1; - + double st = 0; MatchResult sparts = REGEX_SYMBOL_NUMBER_UNIT.exec(trsStart); if (sparts != null) { st = Double.parseDouble(sparts.getGroup(2)); unit = sparts.getGroup(3).isEmpty() ? unit : sparts.getGroup(3); } - trsStart = "" + st + unit; - + trsStart = "" + st; + double en = Double.parseDouble(trsEnd); - trsEnd = "" + (st + n*en) + unit; + trsEnd = "" + (st + n*en); } // Deal with non px units like "%" @@ -181,7 +180,7 @@ public class TransitionsAnimation extends PropertiesAnimation { double to = Double.parseDouble(trsEnd); g.css(key, to + unit); start = to * start / g.cur(key, true); - trsStart = start + unit; + trsStart = "" + start; g.css(key, start + unit); } @@ -219,27 +218,8 @@ public class TransitionsAnimation extends PropertiesAnimation { } @Override - public void onStart() { - effects = JsObjectArray.create(); - boolean resize = false; - boolean move = false; - boolean hidden = !g.isVisible(); - Fx fx; - for (String key : prps.keys()) { - String val = prps.getStr(key); - if ((fx = computeFxProp(e, key, val, hidden)) != null) { - effects.add(fx); - resize = resize || "height".equals(key) || "width".equals(key); - move = move || "top".equals(key) || "left".equals(key); - } - } - g.saveCssAttrs(ATTRS_TO_SAVE); - if (resize) { - g.css("overflow", "hidden"); - } - if (move && !g.css("position", true).matches("absolute|relative|fixed")) { - g.css("position", "relative"); - } + protected Fx getFx(Element e, String key, String val, boolean hidden) { + return computeFxProp(e, key, val, hidden); } @Override