quattro: remove unused parameter 'comment' from function cmtBbClose

This commit is contained in:
Fabrixxm 2012-08-10 04:27:50 -04:00
parent 2b7d08508d
commit 64a6e8693c
1 changed files with 3 additions and 3 deletions

View File

@ -43,10 +43,10 @@ function insertFormatting(comment,BBcode,id) {
} }
function cmtBbOpen(id) { function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show(); $("#comment-edit-bb-" + id).show();
} }
function cmtBbClose(comment, id) { function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide(); $("#comment-edit-bb-" + id).hide();
} }
$(document).ready(function() { $(document).ready(function() {