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

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-dialog/paper-dialog-extracted.js

Issue 2158913007: Roll Polymer from 1.5.0 -> 1.6.0 to pick up native CSS custom props (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 5 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/v1_0/components-chromium/paper-dialog/paper-dialog-extracted.js
diff --git a/third_party/polymer/v1_0/components-chromium/paper-dialog/paper-dialog-extracted.js b/third_party/polymer/v1_0/components-chromium/paper-dialog/paper-dialog-extracted.js
index 1b3570a898c7b4a788ba66a0fcb6f3a1024e44b5..570cf42f25510d8726f85cd9d46db9b85172d740 100644
--- a/third_party/polymer/v1_0/components-chromium/paper-dialog/paper-dialog-extracted.js
+++ b/third_party/polymer/v1_0/components-chromium/paper-dialog/paper-dialog-extracted.js
@@ -15,17 +15,11 @@
_renderOpened: function() {
this.cancelAnimation();
- if (this.withBackdrop) {
- this.backdropElement.open();
- }
this.playAnimation('entry');
},
_renderClosed: function() {
this.cancelAnimation();
- if (this.withBackdrop) {
- this.backdropElement.close();
- }
this.playAnimation('exit');
},

Powered by Google App Engine
This is Rietveld 408576698