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

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

Powered by Google App Engine
This is Rietveld 408576698