move folding to left side of username, move text to css

This commit is contained in:
joshua stein 2015-07-24 00:30:53 -05:00
commit 92c2e85b0a
3 changed files with 16 additions and 7 deletions

View file

@ -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");