Index: third_party/polymer/components-chromium/paper-fab/paper-fab-extracted.js |
diff --git a/third_party/polymer/components-chromium/paper-fab/paper-fab-extracted.js b/third_party/polymer/components-chromium/paper-fab/paper-fab-extracted.js |
deleted file mode 100644 |
index 6acaa8b949293893b51fefd40d7e3f0cfc9bfa41..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/components-chromium/paper-fab/paper-fab-extracted.js |
+++ /dev/null |
@@ -1,51 +0,0 @@ |
- |
- Polymer('paper-fab',{ |
- |
- 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: '', |
- |
- /** |
- * Set this to true to style this is a "mini" FAB. |
- * |
- * @attribute mini |
- * @type boolean |
- * @default false |
- */ |
- mini: false, |
- |
- raised: true, |
- recenteringTouch: true, |
- fill: false |
- |
- }, |
- |
- iconChanged: function(oldIcon) { |
- var label = this.getAttribute('aria-label'); |
- if (!label || label === oldIcon) { |
- this.setAttribute('aria-label', this.icon); |
- } |
- } |
- |
- }); |
- |
- |