Vulcan/packages/telescope-posts/lib/client/templates/modules/post_title.js
2015-05-10 13:37:42 +09:00

8 lines
210 B
JavaScript

Template.post_title.helpers({
postLink: function(){
return !!this.url ? Posts.getOutgoingUrl(this.url) : "/posts/"+this._id;
},
postTarget: function() {
return !!this.url ? '_blank' : '';
}
});