| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 (function() { | 3 (function() { |
| 4 | 4 |
| 5 Polymer({ | 5 Polymer({ |
| 6 | 6 |
| 7 is: 'paper-input-char-counter', | 7 is: 'paper-input-char-counter', |
| 8 | 8 |
| 9 behaviors: [ | 9 behaviors: [ |
| 10 Polymer.PaperInputAddonBehavior | 10 Polymer.PaperInputAddonBehavior |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 if (state.inputElement.hasAttribute('maxlength')) { | 32 if (state.inputElement.hasAttribute('maxlength')) { |
| 33 str += '/' + state.inputElement.getAttribute('maxlength'); | 33 str += '/' + state.inputElement.getAttribute('maxlength'); |
| 34 } | 34 } |
| 35 this._charCounterStr = str; | 35 this._charCounterStr = str; |
| 36 } | 36 } |
| 37 | 37 |
| 38 }); | 38 }); |
| 39 | 39 |
| 40 })(); | 40 })(); |
| 41 | 41 |
| OLD | NEW |