diff options
author | Andy Staudacher <andy.st@gmail.com> | 2010-02-13 13:57:02 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-14 07:15:58 -0800 |
commit | 64e5d438c7ce291dd030b51d1467fc8736f0aa27 (patch) | |
tree | 6fce70570a5f428534bb5000e1e44bc9c9f11e04 /modules/comment/js | |
parent | 1a951cb7f61b33437c2e9b04da0565393d072c03 (diff) |
HTML validation, avoid empty <ul>
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); |