Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(915)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea-extracted.js

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698