Index: third_party/polymer/components-chromium/paper-input/paper-input-extracted.js |
diff --git a/third_party/polymer/components-chromium/paper-input/paper-input-extracted.js b/third_party/polymer/components-chromium/paper-input/paper-input-extracted.js |
deleted file mode 100644 |
index 52cd0bf2db99828fb2a30ded10d162d6fcb38c00..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/components-chromium/paper-input/paper-input-extracted.js |
+++ /dev/null |
@@ -1,67 +0,0 @@ |
- |
- |
- Polymer('paper-input', { |
- |
- publish: { |
- /** |
- * The label for this input. It normally appears as grey text inside |
- * the text input and disappears once the user enters text. |
- * |
- * @attribute label |
- * @type string |
- * @default '' |
- */ |
- label: '', |
- |
- /** |
- * If true, the label will "float" above the text input once the |
- * user enters text instead of disappearing. |
- * |
- * @attribute floatingLabel |
- * @type boolean |
- * @default false |
- */ |
- floatingLabel: false, |
- |
- /** |
- * Set to true to style the element as disabled. |
- * |
- * @attribute disabled |
- * @type boolean |
- * @default false |
- */ |
- disabled: {value: false, reflect: true}, |
- |
- /** |
- * The current value of the input. |
- * |
- * @attribute value |
- * @type String |
- * @default '' |
- */ |
- value: '', |
- |
- /** |
- * The most recently committed value of the input. |
- * |
- * @attribute committedValue |
- * @type String |
- * @default '' |
- */ |
- committedValue: '' |
- |
- }, |
- |
- valueChanged: function() { |
- this.$.decorator.updateLabelVisibility(this.value); |
- }, |
- |
- changeAction: function(e) { |
- if (!window.ShadowDOMPolyfill) { |
- // re-fire event that does not bubble across shadow roots |
- this.fire('change', null, this); |
- } |
- } |
- |
- }); |
- |