Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: third_party/polymer/components/neon-animation/neon-animatable-behavior.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698