OLD | NEW |
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 Loading... |
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> |
OLD | NEW |