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

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

Issue 1401633002: Update Polymer from 1.1.4 -> 1.1.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dzhioev@ review Created 5 years, 2 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
2
3 /* 1 /*
4 `<iron-input>` adds two-way binding and custom validators using `Polymer.IronVal idatorBehavior` 2 `<iron-input>` adds two-way binding and custom validators using `Polymer.IronVal idatorBehavior`
5 to `<input>`. 3 to `<input>`.
6 4
7 ### Two-way binding 5 ### Two-way binding
8 6
9 By default you can only get notified of changes to an `input`'s `value` due to u ser input: 7 By default you can only get notified of changes to an `input`'s `value` due to u ser input:
10 8
11 <input value="{{myValue::input}}"> 9 <input value="{{myValue::input}}">
12 10
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 } 219 }
222 this.fire('iron-input-validate'); 220 this.fire('iron-input-validate');
223 return valid; 221 return valid;
224 } 222 }
225 223
226 }); 224 });
227 225
228 /* 226 /*
229 The `iron-input-validate` event is fired whenever `validate()` is called. 227 The `iron-input-validate` event is fired whenever `validate()` is called.
230 @event iron-input-validate 228 @event iron-input-validate
231 */ 229 */
232
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698