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

13 lines
317 B
JavaScript

Template.selected_comment.show = function(){
return Session.equals('state', 'reply');
};
Template.selected_comment.post = function(){
var post = Session.get('selected_post');
return post;
};
Template.selected_comment.comment = function(){
var comment = Session.get('selected_comment');
return comment;
};