Vulcan/client/templates/post_page.js
2012-09-21 16:06:53 +10:00

41 lines
No EOL
1.1 KiB
JavaScript

(function() {
Template.post_page.events = {
'click input[type=submit]': function(e, template){
e.preventDefault();
var content = template.editor.exportFile();
var post_id = Session.get('selected_post_id');
var $comment = $('#comment');
var new_comment_id=Meteor.call('comment', post_id, null, content, function(error, result){
$("#"+result).removeClass("queued"); // does not work because new element is not yet in the DOM (probably)
});
$comment.val('');
}
};
Template.post_page.show_comment_form = function(){
return Meteor.user() !== null;
};
Template.post_page.post = function(){
var post = Posts.findOne(Session.get('selected_post_id'));
return post;
};
Template.post_page.body_formatted = function(){
var converter = new Markdown.Converter();
var html_body=converter.makeHtml(this.body);
return html_body.autoLink();
}
Template.post_page.rendered = function(){
// t("post_page");
if(Meteor.user() && !this.editor){
this.editor = new EpicEditor(EpicEditorOptions).load();
}
}
window.newCommentTimestamp=new Date();
})();