]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/quattro/theme.php
Merge pull request #500 from fabrixxm/quattro-fontsoptions
[friendica.git] / view / theme / quattro / theme.php
index 5cb373eefe85f8609f305fc716c4b0d88a7a9198..1c986e4c8f2f3eb16abaea88a2a6dd504c56de26 100644 (file)
@@ -42,11 +42,21 @@ function insertFormatting(comment,BBcode,id) {
        return true;
 }
 
+function showThread(id) {
+       $("#collapsed-comments-" + id).show()
+       $("#collapsed-comments-" + id + " .collapsed-comments").show()
+}
+function hideThread(id) {
+       $("#collapsed-comments-" + id).hide()
+       $("#collapsed-comments-" + id + " .collapsed-comments").hide()
+}
+
+
 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() {