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