From: Fabrixxm Date: Fri, 10 Aug 2012 08:27:50 +0000 (-0400) Subject: quattro: remove unused parameter 'comment' from function cmtBbClose X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=64a6e8693c5158c37994d8c1c211265fc158b27d;p=friendica.git quattro: remove unused parameter 'comment' from function cmtBbClose --- diff --git a/view/theme/quattro/theme.php b/view/theme/quattro/theme.php index 5cb373eefe..51d9d05d5e 100644 --- a/view/theme/quattro/theme.php +++ b/view/theme/quattro/theme.php @@ -43,10 +43,10 @@ function insertFormatting(comment,BBcode,id) { } function cmtBbOpen(id) { - $(".comment-edit-bb-" + id).show(); + $("#comment-edit-bb-" + id).show(); } -function cmtBbClose(comment, id) { - $(".comment-edit-bb-" + id).hide(); +function cmtBbClose(id) { + $("#comment-edit-bb-" + id).hide(); } $(document).ready(function() {