Vulcan/client/templates/post.js

13 lines
336 B
JavaScript
Raw Normal View History

2012-08-23 00:15:48 -04:00
Template.post.events = {
'click .discuss-link': function(){
2012-08-23 00:51:31 -04:00
this.top_level_comments = Comments.find({post: this._id, parent: null});
2012-08-23 00:15:48 -04:00
Session.set('selected_post', this);
Session.set('state', 'view_post');
}
};
2012-08-22 23:40:09 -04:00
Template.post.ago = function(){
var submitted = new Date(this.submitted);
return submitted.toString();
};