Minor JS cleanup

This commit is contained in:
Robin Ward 2013-04-02 12:42:11 -04:00
parent 7ef5037bbe
commit 75703cfc6a
2 changed files with 11 additions and 11 deletions

View File

@ -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