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

Side by Side Diff: appengine/chromium_rietveld/new_static/components/cr-issue-inbox-section.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-collapsible.html"> 5 <link rel="import" href="../common/cr-collapsible.html">
6 <link rel="import" href="cr-issue-list.html"> 6 <link rel="import" href="cr-issue-list.html">
7 7
8 <polymer-element name="cr-issue-inbox-section" attributes="issues weeks showRece ntActivity"> 8 <polymer-element name="cr-issue-inbox-section" attributes="issues weeks showRece ntActivity">
9 <template> 9 <template>
10 <link rel="stylesheet" href="common.css"> 10 <link rel="stylesheet" href="../common/common.css">
11 <style> 11 <style>
12 .cr-collapsible-header { 12 .cr-collapsible-header {
13 padding: 0.5em 16px; 13 padding: 0.5em 16px;
14 display: block; 14 display: block;
15 } 15 }
16 </style> 16 </style>
17 17
18 <cr-issue-list issues="{{ visibleIssues }}" showRecentActivity="{{ showR ecentActivity }}" approvals></cr-issue-list> 18 <cr-issue-list issues="{{ visibleIssues }}" showRecentActivity="{{ showR ecentActivity }}" approvals></cr-issue-list>
19 <template if="{{ hiddenIssues.length }}"> 19 <template if="{{ hiddenIssues.length }}">
20 <cr-collapsible active="{{ showingHiddenIssues }}"> 20 <cr-collapsible active="{{ showingHiddenIssues }}">
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 }); 67 });
68 }, 68 },
69 pluralize: function(text, value) { 69 pluralize: function(text, value) {
70 if (value > 1) 70 if (value > 1)
71 return text.pluralize(); 71 return text.pluralize();
72 return text; 72 return text;
73 }, 73 },
74 }); 74 });
75 </script> 75 </script>
76 </polymer-element> 76 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698