move folding to left side of username, move text to css
This commit is contained in:
parent
6cc5f196bf
commit
92c2e85b0a
3 changed files with 16 additions and 7 deletions
|
|
@ -296,7 +296,6 @@ $(document).ready(function() {
|
|||
|
||||
$(document).on("click", "a.comment_folder", function() {
|
||||
$(this).addClass("comment_unfolder").removeClass("comment_folder");
|
||||
$(this).text("unfold");
|
||||
var comment = $(this).closest(".comment");
|
||||
comment.nextAll(".comments").each(function() {
|
||||
$(this).addClass("collapsed");
|
||||
|
|
@ -305,7 +304,6 @@ $(document).ready(function() {
|
|||
|
||||
$(document).on("click", "a.comment_unfolder", function() {
|
||||
$(this).addClass("comment_folder").removeClass("comment_unfolder");
|
||||
$(this).text("fold");
|
||||
var comment = $(this).closest(".comment");
|
||||
comment.nextAll(".comments").each(function() {
|
||||
$(this).removeClass("collapsed");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue