| OLD | NEW |
| 1 Polymer({ | 1 |
| 2 | 2 |
| 3 Polymer({ |
| 4 |
| 3 is: 'iron-autogrow-textarea', | 5 is: 'iron-autogrow-textarea', |
| 4 | 6 |
| 5 behaviors: [ | 7 behaviors: [ |
| 6 Polymer.IronFormElementBehavior, | 8 Polymer.IronFormElementBehavior, |
| 7 Polymer.IronValidatableBehavior, | 9 Polymer.IronValidatableBehavior, |
| 8 Polymer.IronControlState | 10 Polymer.IronControlState |
| 9 ], | 11 ], |
| 10 | 12 |
| 11 properties: { | 13 properties: { |
| 12 | 14 |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 return this._constrain(this.tokens); | 192 return this._constrain(this.tokens); |
| 191 }, | 193 }, |
| 192 | 194 |
| 193 _updateCached: function() { | 195 _updateCached: function() { |
| 194 this.$.mirror.innerHTML = this._constrain(this.tokens); | 196 this.$.mirror.innerHTML = this._constrain(this.tokens); |
| 195 }, | 197 }, |
| 196 | 198 |
| 197 _computeValue: function() { | 199 _computeValue: function() { |
| 198 return this.bindValue; | 200 return this.bindValue; |
| 199 } | 201 } |
| 200 }); | 202 }); |
| OLD | NEW |