window refreshes on comment submission
This commit is contained in:
@ -208,7 +208,7 @@ $(document).ready(function() {
|
|||||||
$('#comment-button').bind('click', commentSubmitButtonHandler);
|
$('#comment-button').bind('click', commentSubmitButtonHandler);
|
||||||
})
|
})
|
||||||
.done(function (data, textStatus, xhr) {
|
.done(function (data, textStatus, xhr) {
|
||||||
//window.location = '/stories/' + JSON.parse(data).storyLink;
|
window.location.reload();
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
var div = document.createElement('div');
|
var div = document.createElement('div');
|
||||||
$(div)
|
$(div)
|
||||||
.html(
|
.html(
|
||||||
|
"<div class='comment row col-xs-12'>" +
|
||||||
"<div class='col-xs-2 text-center'>" +
|
"<div class='col-xs-2 text-center'>" +
|
||||||
"<div class='row'>" +
|
"<div class='row'>" +
|
||||||
"<div class='col-xs-12'>" +
|
"<div class='col-xs-12'>" +
|
||||||
@ -56,9 +57,10 @@
|
|||||||
"<button id='" + commentDetails._id + "'>This is the world's best button</button>" +
|
"<button id='" + commentDetails._id + "'>This is the world's best button</button>" +
|
||||||
"</div>" +
|
"</div>" +
|
||||||
"</div>" +
|
"</div>" +
|
||||||
|
"</div>" +
|
||||||
"</div>"
|
"</div>"
|
||||||
)
|
)
|
||||||
.addClass('comment row ' + offSetClass + ' ' + rowClass + ' comment_' + commentDetails._id)
|
.addClass(offSetClass + ' row ' + rowClass + ' comment_' + commentDetails._id)
|
||||||
.appendTo($(containerSelector));
|
.appendTo($(containerSelector));
|
||||||
|
|
||||||
sentinel += commentDetails.comments.length;
|
sentinel += commentDetails.comments.length;
|
||||||
@ -100,7 +102,7 @@
|
|||||||
$('#submit-comment-to-comment').bind('click', submitCommentToCommentHandler);
|
$('#submit-comment-to-comment').bind('click', submitCommentToCommentHandler);
|
||||||
})
|
})
|
||||||
.done(function (data, textStatus, xhr) {
|
.done(function (data, textStatus, xhr) {
|
||||||
//window.location = '/stories/' + JSON.parse(data).storyLink;
|
window.location.reload();
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user