summaryrefslogtreecommitdiff
path: root/themes/default/js/comment.js
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/js/comment.js')
-rw-r--r--themes/default/js/comment.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/themes/default/js/comment.js b/themes/default/js/comment.js
deleted file mode 100644
index 259b4826..00000000
--- a/themes/default/js/comment.js
+++ /dev/null
@@ -1,19 +0,0 @@
-$("document").ready(function() {
- ajaxify_comment_form();
-});
-
-function ajaxify_comment_form() {
- $("#gComments form").ajaxForm({
- complete: function(xhr, statusText) {
- $("#gComments form").replaceWith(xhr.responseText);
- if (xhr.status == 201) {
- $.get(xhr.getResponseHeader("Location"), function(data, textStatus) {
- $("#gComments .gBlockContent ul:first").append("<li>"+data+"</li>");
- $("#gComments .gBlockContent ul:first li:last").hide().slideDown();
- });
- $("#gComments form").clearForm();
- }
- ajaxify_comment_form();
- }
- });
-}