Index: third_party/polymer/v0_8/components-chromium/neon-animation/animations/slide-from-left-animation-extracted.js |
diff --git a/third_party/polymer/v0_8/components-chromium/neon-animation/animations/slide-from-left-animation-extracted.js b/third_party/polymer/v0_8/components-chromium/neon-animation/animations/slide-from-left-animation-extracted.js |
deleted file mode 100644 |
index 56cd846937c15e4c9ebf9833f1653f0fecf83622..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/v0_8/components-chromium/neon-animation/animations/slide-from-left-animation-extracted.js |
+++ /dev/null |
@@ -1,29 +0,0 @@ |
- |
- |
- Polymer({ |
- |
- is: 'slide-from-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': 'translateX(-100%)'}, |
- {'transform': 'none'} |
- ], this.timingFromConfig(config)); |
- |
- return this._effect; |
- } |
- |
- }); |
- |