Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- | 1 <!-- |
| 2 The <ignores-page-sk> custom element declaration. | 2 The <ignores-page-sk> custom element declaration. |
| 3 | 3 |
| 4 A container element to manage the any digests that should be ignored. | 4 A container element to manage the any digests that should be ignored. |
| 5 | 5 |
| 6 Attributes: | 6 Attributes: |
| 7 None | 7 None |
| 8 | 8 |
| 9 Methods: | 9 Methods: |
| 10 pageSelected: This function has to be called if the page is selected | 10 pageSelected: This function has to be called if the page is selected |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 43 | 43 |
| 44 .ignoresPageWrapper { | 44 .ignoresPageWrapper { |
| 45 padding: 1em; | 45 padding: 1em; |
| 46 } | 46 } |
| 47 | 47 |
| 48 #nameHeader, | 48 #nameHeader, |
| 49 #updatedByHeader, | 49 #updatedByHeader, |
| 50 #expiresHeader, | 50 #expiresHeader, |
| 51 #queryHeader, | 51 #queryHeader, |
| 52 #noteHeader, | 52 #noteHeader, |
| 53 #countHeader { | 53 #countHeader, |
| 54 #exCountHeader { | |
| 54 display: inline-block; | 55 display: inline-block; |
| 55 font-weight: bold; | 56 font-weight: bold; |
| 56 margin-right: 0.5em; | 57 margin-right: 0.5em; |
| 57 } | 58 } |
| 58 | 59 |
| 59 #nameHeader { | 60 #nameHeader { |
| 60 width: 15em; | 61 width: 15em; |
| 61 } | 62 } |
| 62 | 63 |
| 63 #updatedByHeader { | 64 #updatedByHeader { |
| 64 width: 15em; | 65 width: 15em; |
| 65 } | 66 } |
| 66 | 67 |
| 67 #expiresHeader { | 68 #expiresHeader { |
| 68 width: 10em; | 69 width: 10em; |
| 69 } | 70 } |
| 70 | 71 |
| 71 #countHeader { | 72 #countHeader, |
| 73 #exCountHeader { | |
| 72 width: 6em; | 74 width: 6em; |
| 73 } | 75 } |
| 74 | 76 |
| 75 #queryHeader { | 77 #queryHeader { |
| 76 width: 20em; | 78 width: 20em; |
| 77 } | 79 } |
| 78 | 80 |
| 79 #noteHeader { | 81 #noteHeader { |
| 80 width: 20em; | 82 width: 20em; |
| 81 } | 83 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 116 | 118 |
| 117 </style> | 119 </style> |
| 118 <div class="layout vertical ignoresPageWrapper"> | 120 <div class="layout vertical ignoresPageWrapper"> |
| 119 <div class="layout horizontal"> | 121 <div class="layout horizontal"> |
| 120 <div id=nameHeader>Name</div> | 122 <div id=nameHeader>Name</div> |
| 121 <div id=expiresHeader>Expires</div> | 123 <div id=expiresHeader>Expires</div> |
| 122 <div id=updatedByHeader>Updated By</div> | 124 <div id=updatedByHeader>Updated By</div> |
| 123 <div id=queryHeader>Filter</div> | 125 <div id=queryHeader>Filter</div> |
| 124 <div id=noteHeader>Note</div> | 126 <div id=noteHeader>Note</div> |
| 125 <div id=countHeader>Ignored</div> | 127 <div id=countHeader>Ignored</div> |
| 128 <div id=exCountHeader>Exclusive</div> | |
|
mtklein
2016/08/05 21:37:57
Exclusively ignored?
Ignored by only this rule?
stephana
2016/08/08 15:13:53
I don't think there is a good wording for the head
| |
| 126 </div> | 129 </div> |
| 127 <div id=summaries class="vertical layout"> | 130 <div id=summaries class="vertical layout"> |
| 128 <template is="dom-repeat" items={{ignores}}> | 131 <template is="dom-repeat" items={{ignores}}> |
| 129 <ignore-summary-sk value="{{item}}"></ignore-summary-sk> | 132 <ignore-summary-sk value="{{item}}"></ignore-summary-sk> |
| 130 </template> | 133 </template> |
| 131 </div> | 134 </div> |
| 132 </div> | 135 </div> |
| 133 | 136 |
| 134 <paper-dialog id="confirmDelete"> | 137 <paper-dialog id="confirmDelete"> |
| 135 <h2>Confirm Delete</h2> | 138 <h2>Confirm Delete</h2> |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 283 }, | 286 }, |
| 284 | 287 |
| 285 _openDialog: function(isEdit) { | 288 _openDialog: function(isEdit) { |
| 286 this._isEdit = isEdit; | 289 this._isEdit = isEdit; |
| 287 this._readyToAdd(); | 290 this._readyToAdd(); |
| 288 this.$.addEditDialog.open(); | 291 this.$.addEditDialog.open(); |
| 289 } | 292 } |
| 290 }); | 293 }); |
| 291 </script> | 294 </script> |
| 292 </dom-module> | 295 </dom-module> |
| OLD | NEW |