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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-error-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: asdf 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 Polymer({
2 Polymer({
3 is: 'paper-input-error', 2 is: 'paper-input-error',
4 3
5 behaviors: [ 4 behaviors: [
6 Polymer.PaperInputAddonBehavior 5 Polymer.PaperInputAddonBehavior
7 ], 6 ],
8 7
9 properties: { 8 properties: {
10 /** 9 /**
11 * True if the error is showing. 10 * True if the error is showing.
12 */ 11 */
13 invalid: { 12 invalid: {
14 readOnly: true, 13 readOnly: true,
15 reflectToAttribute: true, 14 reflectToAttribute: true,
16 type: Boolean 15 type: Boolean
17 } 16 }
18 }, 17 },
19 18
20 update: function(state) { 19 update: function(state) {
21 this._setInvalid(state.invalid); 20 this._setInvalid(state.invalid);
22 } 21 }
23 }); 22 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698