]> git.mxchange.org Git - friendica.git/commitdiff
quattro: remove unused parameter 'comment' from function cmtBbClose
authorFabrixxm <fabrix.xm@gmail.com>
Fri, 10 Aug 2012 08:27:50 +0000 (04:27 -0400)
committerFabrixxm <fabrix.xm@gmail.com>
Fri, 10 Aug 2012 08:27:50 +0000 (04:27 -0400)
view/theme/quattro/theme.php

index 5cb373eefe85f8609f305fc716c4b0d88a7a9198..51d9d05d5e4cf4eb13ce8c29fee6b64d698696a0 100644 (file)
@@ -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() {