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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-toolbar/paper-toolbar-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 (function() { 1
2 2
3 (function() {
4
3 'use strict'; 5 'use strict';
4 6
5 function classNames(obj) { 7 function classNames(obj) {
6 var classNames = []; 8 var classNames = [];
7 for (var key in obj) { 9 for (var key in obj) {
8 if (obj.hasOwnProperty(key) && obj[key]) { 10 if (obj.hasOwnProperty(key) && obj[key]) {
9 classNames.push(key); 11 classNames.push(key);
10 } 12 }
11 } 13 }
12 14
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 barJustify + '-justified'; 128 barJustify + '-justified';
127 129
128 classObj[justifyClassName] = true; 130 classObj[justifyClassName] = true;
129 } 131 }
130 132
131 return classNames(classObj); 133 return classNames(classObj);
132 } 134 }
133 135
134 }); 136 });
135 137
136 }()); 138 }());
139
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698