Index: third_party/polymer/components-chromium/paper-dialog/paper-dialog-base-extracted.js |
diff --git a/third_party/polymer/components-chromium/paper-dialog/paper-dialog-base-extracted.js b/third_party/polymer/components-chromium/paper-dialog/paper-dialog-base-extracted.js |
deleted file mode 100644 |
index 52764721b2872f89cb839505d8e1dbf79ff8a487..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/components-chromium/paper-dialog/paper-dialog-base-extracted.js |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
- |
- |
- Polymer('paper-dialog-base',{ |
- |
- publish: { |
- |
- /** |
- * The title of the dialog. |
- * |
- * @attribute heading |
- * @type string |
- * @default '' |
- */ |
- heading: '', |
- |
- /** |
- * @attribute transition |
- * @type string |
- * @default '' |
- */ |
- transition: '', |
- |
- /** |
- * @attribute layered |
- * @type boolean |
- * @default true |
- */ |
- layered: true |
- }, |
- |
- ready: function() { |
- this.super(); |
- this.sizingTarget = this.$.scroller; |
- }, |
- |
- headingChanged: function(old) { |
- var label = this.getAttribute('aria-label'); |
- if (!label || label === old) { |
- this.setAttribute('aria-label', this.heading); |
- } |
- }, |
- |
- openAction: function() { |
- if (this.$.scroller.scrollTop) { |
- this.$.scroller.scrollTop = 0; |
- } |
- } |
- |
- }); |
- |