mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
40 lines
No EOL
1 KiB
JavaScript
40 lines
No EOL
1 KiB
JavaScript
(function() {
|
|
|
|
var editor;
|
|
|
|
Template.post_page.events = {
|
|
'click input[type=submit]': function(e){
|
|
e.preventDefault();
|
|
var content = 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");
|
|
editor= new EpicEditor(EpicEditorOptions).load();
|
|
}
|
|
|
|
window.newCommentTimestamp=new Date();
|
|
|
|
})(); |