mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 05:49:22 +00:00
Load the comments once they are created.
This commit is contained in:
parent
d100d42c06
commit
8af020364d
@ -13,12 +13,25 @@ ComunicWeb.components.comments.form = {
|
||||
*/
|
||||
display: function(postID, target){
|
||||
|
||||
//Create form contener
|
||||
var commentForm = createElem2({
|
||||
appendTo: target,
|
||||
type: "form",
|
||||
class: "comment-creation-form"
|
||||
});
|
||||
//Check if we are creating a new comment of or reseting an existing one
|
||||
if(target.className != "comment-creation-form"){
|
||||
|
||||
//Create form contener
|
||||
var commentForm = createElem2({
|
||||
appendTo: target,
|
||||
type: "form",
|
||||
class: "comment-creation-form"
|
||||
});
|
||||
|
||||
}
|
||||
else {
|
||||
|
||||
//Reset current form
|
||||
emptyElem(target);
|
||||
var commentForm = target;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//Create input group
|
||||
var inputGroup = createElem2({
|
||||
@ -102,7 +115,15 @@ ComunicWeb.components.comments.form = {
|
||||
return;
|
||||
}
|
||||
|
||||
//Perform next actions
|
||||
//Reset the creation form
|
||||
ComunicWeb.components.comments.form.display(postID, commentForm);
|
||||
|
||||
//Load the new comment before the form element
|
||||
var newCommentTarget = createElem2({
|
||||
insertBefore: commentForm,
|
||||
type: "div"
|
||||
});
|
||||
ComunicWeb.components.comments.actions.reload(result.commentID, newCommentTarget);
|
||||
});
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user