Index: golden/frontend/res/imp/ignore-summary-sk.html |
diff --git a/golden/frontend/res/imp/ignore-summary-sk.html b/golden/frontend/res/imp/ignore-summary-sk.html |
index 2c8213baa4f810674be85aaad34cf8a4f1aa73bf..83788bf41c27b6c6afeae08ecc9b470cfabfb660 100644 |
--- a/golden/frontend/res/imp/ignore-summary-sk.html |
+++ b/golden/frontend/res/imp/ignore-summary-sk.html |
@@ -3,7 +3,7 @@ |
Displays a summary of an ignore rule. |
Attributes: |
- None. |
+ None. |
Events: |
'delete' |
@@ -16,8 +16,8 @@ Displays a summary of an ignore rule. |
pressed. The state of the ignore rule will be included in e.detail. |
Methods: |
- None. |
- |
+ None. |
+ |
--> |
<link rel="import" href="bower_components/iron-icons/iron-icons.html"> |
@@ -64,6 +64,10 @@ Displays a summary of an ignore rule. |
width: 6em; |
color: #A6761D; |
} |
+ #excount { |
+ width: 6em; |
+ color: #A6761D; |
+ } |
paper-button { |
min-width: 2em; |
} |
@@ -74,6 +78,7 @@ Displays a summary of an ignore rule. |
<pre id="query"><a href$="{{_queryHref(value.query)}}">{{_splitAmp(value.query)}}</a></pre> |
<div id="note">{{value.note}}</div> |
<div id="count">{{value.count}}</div> |
+ <div id="excount">{{value.exclusiveCount}}</div> |
<paper-button id="edit" title="Edit"><iron-icon icon="create"></iron-icon></paper-button> |
<paper-button id="delete" title="Delete"><iron-icon icon="delete"></iron-icon></paper-button> |
</template> |
@@ -92,17 +97,17 @@ Displays a summary of an ignore rule. |
ready: function () { |
this.listen(this.$.edit, 'click', "_handleEditClick"); |
this.listen(this.$.delete, 'click', "_handleDeleteClick"); |
- }, |
+ }, |
_handleEditClick: function() { |
- this.fire('edit', this.value); |
+ this.fire('edit', this.value); |
}, |
_handleDeleteClick: function() { |
this.fire('delete', this.value); |
}, |
- // Make an alias to split by ampersand. |
+ // Make an alias to split by ampersand. |
_splitAmp: sk.query.splitAmp, |
_humanDiffDate: function (s) { |
@@ -117,4 +122,3 @@ Displays a summary of an ignore rule. |
}()); |
</script> |
</dom-module> |
- |