Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: third_party/polymer/components/neon-animation/animations/reverse-ripple-animation.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/components/neon-animation/animations/reverse-ripple-animation.html
diff --git a/third_party/polymer/components/neon-animation/animations/reverse-ripple-animation.html b/third_party/polymer/components/neon-animation/animations/reverse-ripple-animation.html
index 7284e9bd4258a1c18a8dcbcb3f8c6f27ed85e25d..f1f9de96f83be2241d2ff292394dee3f9480be22 100644
--- a/third_party/polymer/components/neon-animation/animations/reverse-ripple-animation.html
+++ b/third_party/polymer/components/neon-animation/animations/reverse-ripple-animation.html
@@ -66,13 +66,14 @@ Configuration:
var scaleY = diameter / fromRect.height;
var scale = 'scale(' + scaleX + ',' + scaleY + ')';
- this.setPrefixedProperty(shared.from, 'transformOrigin', '50% 50%');
- shared.from.style.borderRadius = '50%';
-
this._effect = new KeyframeEffect(shared.from, [
{'transform': translate + ' ' + scale},
{'transform': translate + ' scale(0)'}
], this.timingFromConfig(config));
+
+ this.setPrefixedProperty(shared.from, 'transformOrigin', '50% 50%');
+ shared.from.style.borderRadius = '50%';
+
return this._effect;
},

Powered by Google App Engine
This is Rietveld 408576698