Vulcan/client/templates/comment.js
2012-08-23 00:15:48 -04:00

12 lines
298 B
JavaScript

Template.comment.events = {
'click .comment-reply': function(event){
event.preventDefault();
Session.set('selected_comment', this);
Session.set('state', 'reply');
}
};
Template.comment.ago = function(){
var submitted = new Date(this.submitted);
return submitted.toString();
};