mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-14 00:50:14 -04:00
Oops, jshint fail. I never remember the triple equals
This commit is contained in:
parent
442be64d5e
commit
f517fa6099
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ Discourse.Topic = Discourse.Model.extend({
|
|||
|
||||
excerptTruncated: function() {
|
||||
var e = this.get('excerpt');
|
||||
return( e && e.substr(e.length - 8,8) == '…' );
|
||||
return( e && e.substr(e.length - 8,8) === '…' );
|
||||
}.property('excerpt')
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue