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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-toolbar/paper-toolbar-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 (function() {
2 2
3 (function() {
4
5 'use strict'; 3 'use strict';
6 4
7 function classNames(obj) { 5 function classNames(obj) {
8 var classNames = []; 6 var classNames = [];
9 for (var key in obj) { 7 for (var key in obj) {
10 if (obj.hasOwnProperty(key) && obj[key]) { 8 if (obj.hasOwnProperty(key) && obj[key]) {
11 classNames.push(key); 9 classNames.push(key);
12 } 10 }
13 } 11 }
14 12
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 barJustify + '-justified'; 126 barJustify + '-justified';
129 127
130 classObj[justifyClassName] = true; 128 classObj[justifyClassName] = true;
131 } 129 }
132 130
133 return classNames(classObj); 131 return classNames(classObj);
134 } 132 }
135 133
136 }); 134 });
137 135
138 }()); 136 }());
139
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698