2008-11-16 07:14:12 +00:00
|
|
|
$("document").ready(function() {
|
|
|
|
|
ajaxify_comment_form();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function ajaxify_comment_form() {
|
2008-11-23 20:17:02 +00:00
|
|
|
$("#gComments form").ajaxForm({
|
2008-12-25 01:34:17 +00:00
|
|
|
dataType: "json",
|
2008-12-25 00:47:40 +00:00
|
|
|
success: function(data) {
|
2008-12-25 05:12:46 +00:00
|
|
|
if (data.form) {
|
2008-12-31 03:29:25 +00:00
|
|
|
$("#gComments form").replaceWith(data.form);
|
|
|
|
|
ajaxify_comment_form();
|
2008-12-25 05:12:46 +00:00
|
|
|
}
|
2008-12-25 00:47:40 +00:00
|
|
|
if (data.result == "success") {
|
|
|
|
|
$.get(data.resource, function(data, textStatus) {
|
2008-11-24 07:12:45 +00:00
|
|
|
$("#gComments .gBlockContent ul:first").append("<li>"+data+"</li>");
|
2009-02-12 07:07:11 +00:00
|
|
|
$("#gComments .gBlockContent ul:first li:last").effect("highlight", {color: "#cfc"}, 8000);
|
|
|
|
|
$("#gAddCommentForm").hide(2000);
|
2008-11-18 08:28:32 +00:00
|
|
|
});
|
2008-11-16 07:14:12 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
2009-02-12 07:07:11 +00:00
|
|
|
}
|