Hide reply link by default. Enable with JS. Props Viper007Bond. see #7635

git-svn-id: http://svn.automattic.com/wordpress/trunk@9037 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2008-09-30 17:27:15 +00:00
parent e3cc331835
commit eef17ba0a5
3 changed files with 8 additions and 3 deletions

View File

@@ -32,4 +32,9 @@ function cancelCommentReply(respondId, respondRoot) {
document.location.href = "#respond";
document.getElementById("comment").focus();
document.getElementById("comment-parent").value = "0";
}
}
jQuery(document).ready(function($){
$(".thread-odd").find("div.reply").css("display", "block");
$(".thread-even").find("div.reply").css("display", "block");
});