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

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

Powered by Google App Engine
This is Rietveld 408576698