Don't show new topic indicator on New tab
This commit is contained in:
parent
f2cca140b4
commit
80510c5114
|
@ -122,6 +122,7 @@ var controllerOpts = {
|
||||||
showTable: Em.computed.or('hasTopics', 'topicTrackingState.hasIncoming'),
|
showTable: Em.computed.or('hasTopics', 'topicTrackingState.hasIncoming'),
|
||||||
allLoaded: Em.computed.empty('more_topics_url'),
|
allLoaded: Em.computed.empty('more_topics_url'),
|
||||||
latest: Discourse.computed.endWith('filter', 'latest'),
|
latest: Discourse.computed.endWith('filter', 'latest'),
|
||||||
|
new: Discourse.computed.endWith('filter', 'new'),
|
||||||
top: Em.computed.notEmpty('period'),
|
top: Em.computed.notEmpty('period'),
|
||||||
yearly: Em.computed.equal('period', 'yearly'),
|
yearly: Em.computed.equal('period', 'yearly'),
|
||||||
monthly: Em.computed.equal('period', 'monthly'),
|
monthly: Em.computed.equal('period', 'monthly'),
|
||||||
|
|
|
@ -13,6 +13,7 @@ export default Ember.ObjectController.extend({
|
||||||
|
|
||||||
canStar: Em.computed.alias('controllers.discovery/topics.currentUser.id'),
|
canStar: Em.computed.alias('controllers.discovery/topics.currentUser.id'),
|
||||||
bulkSelectEnabled: Em.computed.alias('controllers.discovery/topics.bulkSelectEnabled'),
|
bulkSelectEnabled: Em.computed.alias('controllers.discovery/topics.bulkSelectEnabled'),
|
||||||
|
showTopicPostBadges: Em.computed.not('controllers.discovery/topics.new'),
|
||||||
|
|
||||||
checked: function(key, value) {
|
checked: function(key, value) {
|
||||||
var selected = this.get('controllers.discovery/topics.selected'),
|
var selected = this.get('controllers.discovery/topics.selected'),
|
||||||
|
@ -44,4 +45,3 @@ export default Ember.ObjectController.extend({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,9 @@
|
||||||
<td class='main-link clearfix' {{bind-attr colspan="titleColSpan"}}>
|
<td class='main-link clearfix' {{bind-attr colspan="titleColSpan"}}>
|
||||||
{{topic-status topic=this.model}}
|
{{topic-status topic=this.model}}
|
||||||
{{topic-link this}}
|
{{topic-link this}}
|
||||||
{{topic-post-badges unread=unread newPosts=displayNewPosts unseen=unseen url=lastUnreadUrl}}
|
{{#if showTopicPostBadges}}
|
||||||
|
{{topic-post-badges unread=unread newPosts=displayNewPosts unseen=unseen url=lastUnreadUrl}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
{{#if hasExcerpt}}
|
{{#if hasExcerpt}}
|
||||||
<div class="topic-excerpt">
|
<div class="topic-excerpt">
|
||||||
|
|
Loading…
Reference in New Issue