Vulcan/packages/telescope-posts/lib/client/templates/modules/post_title.js
2015-06-18 13:04:38 +09:00

8 lines
165 B
JavaScript

Template.post_title.helpers({
postLink: function(){
return Posts.getLink(this);
},
postTarget: function() {
return !!this.url ? '_blank' : '';
}
});