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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-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 1 /**
2
3 /**
4 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con tainer>`. This 2 * 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 3 * 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 4 * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your
7 * template. 5 * template.
8 * 6 *
9 * The input element can be accessed by the `inputElement` property if you nee d to access 7 * The input element can be accessed by the `inputElement` property if you nee d to access
10 * properties or methods that are not exposed. 8 * properties or methods that are not exposed.
11 * @polymerBehavior Polymer.PaperInputBehavior 9 * @polymerBehavior Polymer.PaperInputBehavior
12 */ 10 */
13 Polymer.PaperInputBehaviorImpl = { 11 Polymer.PaperInputBehaviorImpl = {
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 node: this, 411 node: this,
414 bubbles: event.bubbles, 412 bubbles: event.bubbles,
415 cancelable: event.cancelable 413 cancelable: event.cancelable
416 }); 414 });
417 } 415 }
418 } 416 }
419 417
420 }; 418 };
421 419
422 /** @polymerBehavior */ 420 /** @polymerBehavior */
423 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha viorImpl]; 421 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha viorImpl];
424
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698