Merge pull request #2735 from techAPJ/patch-3
suppress post count on avatar for single post
This commit is contained in:
commit
03a7b01e4b
|
@ -1,6 +1,7 @@
|
||||||
export default Ember.Component.extend({
|
export default Ember.Component.extend({
|
||||||
|
|
||||||
postStream: Em.computed.alias('participant.topic.postStream'),
|
postStream: Em.computed.alias('participant.topic.postStream'),
|
||||||
|
showPostCount: Em.computed.gte('participant.post_count', 2),
|
||||||
|
|
||||||
toggled: function() {
|
toggled: function() {
|
||||||
return this.get('postStream.userFilters').contains(this.get('participant.username'));
|
return this.get('postStream.userFilters').contains(this.get('participant.username'));
|
||||||
|
|
|
@ -88,5 +88,3 @@ export default ObjectController.extend({
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
<a href='#' {{bind-attr class=":poster toggled"}} {{action toggle}} title="{{unbound participant.username}}">
|
<a href='#' {{bind-attr class=":poster toggled"}} {{action toggle}} title="{{unbound participant.username}}">
|
||||||
|
{{#if showPostCount}}
|
||||||
<span class='post-count'>{{unbound participant.post_count}}</span>
|
<span class='post-count'>{{unbound participant.post_count}}</span>
|
||||||
|
{{/if}}
|
||||||
{{avatar participant imageSize="medium"}}
|
{{avatar participant imageSize="medium"}}
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in New Issue