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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-container-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-container', 3 is: 'paper-input-container',
3 4
4 properties: { 5 properties: {
5 /** 6 /**
6 * Set to true to disable the floating label. The label disappears when th e input value is 7 * Set to true to disable the floating label. The label disappears when th e input value is
7 * not null. 8 * not null.
8 */ 9 */
9 noLabelFloat: { 10 noLabelFloat: {
10 type: Boolean, 11 type: Boolean,
11 value: false 12 value: false
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 271
271 _computeAddOnContentClass: function(focused, invalid) { 272 _computeAddOnContentClass: function(focused, invalid) {
272 var cls = 'add-on-content'; 273 var cls = 'add-on-content';
273 if (invalid) { 274 if (invalid) {
274 cls += ' is-invalid'; 275 cls += ' is-invalid';
275 } else if (focused) { 276 } else if (focused) {
276 cls += ' is-highlighted' 277 cls += ' is-highlighted'
277 } 278 }
278 return cls; 279 return cls;
279 } 280 }
280 }); 281 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698