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

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

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake Created 5 years, 6 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 1
2 2
3 /** 3 /**
4 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con tainer>`. This 4 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con tainer>`. This
5 * behavior is implemented by `<paper-input>`. It exposes a number of properti es from 5 * behavior is implemented by `<paper-input>`. It exposes a number of properti es from
6 * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your 6 * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your
7 * template. 7 * template.
8 * 8 *
9 * The input element can be accessed by the `inputElement` property if you nee d to access 9 * The input element can be accessed by the `inputElement` property if you nee d to access
10 * properties or methods that are not exposed. 10 * properties or methods that are not exposed.
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 labelledBy = label.id; 272 labelledBy = label.id;
273 } else { 273 } else {
274 labelledBy = 'paper-input-label-' + new Date().getUTCMilliseconds(); 274 labelledBy = 'paper-input-label-' + new Date().getUTCMilliseconds();
275 label.id = labelledBy; 275 label.id = labelledBy;
276 } 276 }
277 this._ariaLabelledBy = labelledBy; 277 this._ariaLabelledBy = labelledBy;
278 } 278 }
279 279
280 }; 280 };
281 281
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698