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

Side by Side Diff: appengine/chromium_rietveld/new_static/components/cr-issue-list.html

Issue 1001723003: Create a common directory of widgets and css. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 9 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 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="cr-view-handler.html"> 5 <link rel="import" href="../common/cr-view-handler.html">
6 6
7 <polymer-element name="cr-issue-list" attributes="issues approvals showRecentAct ivity"> 7 <polymer-element name="cr-issue-list" attributes="issues approvals showRecentAct ivity">
8 <template> 8 <template>
9 <cr-view-handler></cr-view-handler> 9 <cr-view-handler></cr-view-handler>
10 <style> 10 <style>
11 :host { 11 :host {
12 display: block; 12 display: block;
13 } 13 }
14 14
15 .issues { 15 .issues {
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 var users = []; 140 var users = [];
141 Object.keys(scores, function(name, score) { 141 Object.keys(scores, function(name, score) {
142 if (score == selectedScore) 142 if (score == selectedScore)
143 users.push(name); 143 users.push(name);
144 }); 144 });
145 return users.sort().join(", "); 145 return users.sort().join(", ");
146 }, 146 },
147 }); 147 });
148 </script> 148 </script>
149 </polymer-element> 149 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698