| Index: third_party/polymer/v1_0/components-chromium/neon-animation/animations/slide-left-animation-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/neon-animation/animations/slide-left-animation-extracted.js b/third_party/polymer/v1_0/components-chromium/neon-animation/animations/slide-left-animation-extracted.js
|
| deleted file mode 100644
|
| index 194884912c4b02d9e52c57743568ef74dde6abd2..0000000000000000000000000000000000000000
|
| --- a/third_party/polymer/v1_0/components-chromium/neon-animation/animations/slide-left-animation-extracted.js
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -
|
| -
|
| - Polymer({
|
| -
|
| - is: 'slide-left-animation',
|
| -
|
| - behaviors: [
|
| - Polymer.NeonAnimationBehavior
|
| - ],
|
| -
|
| - configure: function(config) {
|
| - var node = config.node;
|
| -
|
| - if (config.transformOrigin) {
|
| - this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin);
|
| - } else {
|
| - this.setPrefixedProperty(node, 'transformOrigin', '0 50%');
|
| - }
|
| -
|
| - this._effect = new KeyframeEffect(node, [
|
| - {'transform': 'none'},
|
| - {'transform': 'translateX(-100%)'}
|
| - ], this.timingFromConfig(config));
|
| -
|
| - return this._effect;
|
| - }
|
| -
|
| - });
|
| -
|
|
|