Index: third_party/polymer/components/neon-animation/neon-animatable-behavior.html |
diff --git a/third_party/polymer/components/neon-animation/neon-animatable-behavior.html b/third_party/polymer/components/neon-animation/neon-animatable-behavior.html |
index 734563f4cfba0941bd30b3bef79417c9cd60e011..dd58a6cfbace440ce303b5d1eda6c7cee01632b7 100644 |
--- a/third_party/polymer/components/neon-animation/neon-animatable-behavior.html |
+++ b/third_party/polymer/components/neon-animation/neon-animatable-behavior.html |
@@ -9,7 +9,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
--> |
<link rel="import" href="../polymer/polymer.html"> |
-<link rel="import" href="animations/opaque-animation.html"> |
<script> |
@@ -51,21 +50,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN |
_entryAnimationChanged: function() { |
this.animationConfig = this.animationConfig || {}; |
- if (this.entryAnimation !== 'fade-in-animation') { |
- // insert polyfill hack |
- this.animationConfig['entry'] = [{ |
- name: 'opaque-animation', |
- node: this |
- }, { |
- name: this.entryAnimation, |
- node: this |
- }]; |
- } else { |
- this.animationConfig['entry'] = [{ |
- name: this.entryAnimation, |
- node: this |
- }]; |
- } |
+ this.animationConfig['entry'] = [{ |
+ name: this.entryAnimation, |
+ node: this |
+ }]; |
}, |
_exitAnimationChanged: function() { |