Files
gallery3/modules/comment/js/comment.js
T

46 lines
1.2 KiB
JavaScript
Raw Normal View History

2008-11-16 07:14:12 +00:00
$("document").ready(function() {
$("#g-add-comment").click(function(event) {
event.preventDefault();
if (!$("#g-comment-form").length) {
$.get($(this).attr("href"),
{},
function(data) {
$("#g-comment-detail").append(data);
ajaxify_comment_form();
$.scrollTo("#g-comment-form-anchor", 800);
});
}
});
$(".g-no-comments a").click(function(event) {
event.preventDefault();
if (!$("#g-comment-form").length) {
$.get($(this).attr("href"),
{},
function(data) {
$("#g-comment-detail").append(data);
ajaxify_comment_form();
});
$(".g-no-comments").remove();
}
});
2008-11-16 07:14:12 +00:00
});
function ajaxify_comment_form() {
$("#g-comments form").ajaxForm({
2008-12-25 01:34:17 +00:00
dataType: "json",
success: function(data) {
if (data.result == "success") {
2010-02-13 13:57:02 -08:00
$("#g-comments #g-comment-detail ul").append(data.view);
$("#g-comments #g-comment-detail ul li:last").effect("highlight", {color: "#cfc"}, 8000);
$("#g-comment-form").hide(2000).remove();
$("#g-no-comments").hide(2000);
} else {
if (data.form) {
$("#g-comments form").replaceWith(data.form);
ajaxify_comment_form();
}
2008-11-16 07:14:12 +00:00
}
}
});
}