Index: third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js |
diff --git a/third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js b/third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js |
deleted file mode 100644 |
index f6e087af45421667421a59a142f53209a82b38b9..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/components-chromium/paper-icon-button/paper-icon-button-extracted.js |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
- |
- Polymer('paper-icon-button',{ |
- |
- publish: { |
- |
- /** |
- * The URL of an image for the icon. If the src property is specified, |
- * the icon property should not be. |
- * |
- * @attribute src |
- * @type string |
- * @default '' |
- */ |
- src: '', |
- |
- /** |
- * Specifies the icon name or index in the set of icons available in |
- * the icon's icon set. If the icon property is specified, |
- * the src property should not be. |
- * |
- * @attribute icon |
- * @type string |
- * @default '' |
- */ |
- icon: '', |
- |
- recenteringTouch: true, |
- fill: false |
- |
- }, |
- |
- iconChanged: function(oldIcon) { |
- var label = this.getAttribute('aria-label'); |
- if (!label || label === oldIcon) { |
- this.setAttribute('aria-label', this.icon); |
- } |
- } |
- |
- }); |
- |
- |