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