| Index: third_party/polymer/components/neon-animation/animations/slide-from-bottom-animation.html
|
| diff --git a/third_party/polymer/components/neon-animation/animations/slide-from-bottom-animation.html b/third_party/polymer/components/neon-animation/animations/slide-from-bottom-animation.html
|
| index 18c40db26bd6d542938b4150e3fa726fc2a47e83..d1156e9353bedc6c0c60c96627a6198999724c45 100644
|
| --- a/third_party/polymer/components/neon-animation/animations/slide-from-bottom-animation.html
|
| +++ b/third_party/polymer/components/neon-animation/animations/slide-from-bottom-animation.html
|
| @@ -40,17 +40,17 @@ Configuration:
|
| configure: function(config) {
|
| var node = config.node;
|
|
|
| + this._effect = new KeyframeEffect(node, [
|
| + {'transform': 'translateY(100%)'},
|
| + {'transform': 'translateY(0)'}
|
| + ], this.timingFromConfig(config));
|
| +
|
| if (config.transformOrigin) {
|
| this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin);
|
| } else {
|
| this.setPrefixedProperty(node, 'transformOrigin', '50% 0');
|
| }
|
|
|
| - this._effect = new KeyframeEffect(node, [
|
| - {'transform': 'translateY(100%)'},
|
| - {'transform': 'translateY(0)'}
|
| - ], this.timingFromConfig(config));
|
| -
|
| return this._effect;
|
| }
|
|
|
|
|