diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-14 07:11:11 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-14 07:11:11 -0800 |
commit | df8273e3f26f35ad87fd6f96610f370bdad7f1e5 (patch) | |
tree | fa4419ea94b9bc43582505899c83a370d2f3f8b3 /modules/comment/js | |
parent | da251228cbb54818852c49d37ec7eb31f2313160 (diff) | |
parent | 995e592a3d7e6b6778c2c3a2e9bed8e087252f57 (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/comment/js')
-rw-r--r-- | modules/comment/js/comment.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/js/comment.js b/modules/comment/js/comment.js index bb204b78..3c8097c6 100644 --- a/modules/comment/js/comment.js +++ b/modules/comment/js/comment.js @@ -29,7 +29,7 @@ function ajaxify_comment_form() { dataType: "json", success: function(data) { if (data.result == "success") { - $("#g-comments #g-comment-detail ul").append(data.view); + $("#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-yet").hide(2000); |