mirror of
https://github.com/discourse/discourse.git
synced 2025-05-02 01:14:41 +08:00
Minor JS cleanup
This commit is contained in:
parent
7ef5037bbe
commit
75703cfc6a
@ -9,25 +9,25 @@
|
|||||||
Discourse.TopicStatusView = Discourse.View.extend({
|
Discourse.TopicStatusView = Discourse.View.extend({
|
||||||
classNames: ['topic-statuses'],
|
classNames: ['topic-statuses'],
|
||||||
|
|
||||||
hasDisplayableStatus: (function() {
|
hasDisplayableStatus: function() {
|
||||||
if (this.get('topic.closed')) return true;
|
if (this.get('topic.closed')) return true;
|
||||||
if (this.get('topic.pinned')) return true;
|
if (this.get('topic.pinned')) return true;
|
||||||
if (!this.get('topic.archetype.isDefault')) return true;
|
if (!this.get('topic.archetype.isDefault')) return true;
|
||||||
if (!this.get('topic.visible')) return true;
|
if (!this.get('topic.visible')) return true;
|
||||||
return false;
|
return false;
|
||||||
}).property('topic.closed', 'topic.pinned', 'topic.visible'),
|
}.property('topic.closed', 'topic.pinned', 'topic.visible'),
|
||||||
|
|
||||||
statusChanged: (function() {
|
statusChanged: function() {
|
||||||
this.rerender();
|
this.rerender();
|
||||||
}).observes('topic.closed', 'topic.pinned', 'topic.visible'),
|
}.observes('topic.closed', 'topic.pinned', 'topic.visible'),
|
||||||
|
|
||||||
renderIcon: function(buffer, name, key) {
|
renderIcon: function(buffer, name, key) {
|
||||||
var title;
|
var title = Em.String.i18n("topic_statuses." + key + ".help");
|
||||||
title = Em.String.i18n("topic_statuses." + key + ".help");
|
|
||||||
return buffer.push("<span title='" + title + "' class='topic-status'><i class='icon icon-" + name + "'></i></span>");
|
return buffer.push("<span title='" + title + "' class='topic-status'><i class='icon icon-" + name + "'></i></span>");
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function(buffer) {
|
render: function(buffer) {
|
||||||
|
|
||||||
if (!this.get('hasDisplayableStatus')) return;
|
if (!this.get('hasDisplayableStatus')) return;
|
||||||
|
|
||||||
// Allow a plugin to add a custom icon to a topic
|
// Allow a plugin to add a custom icon to a topic
|
||||||
|
Loading…
x
Reference in New Issue
Block a user