aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/testbubble/conversation.tpl
diff options
context:
space:
mode:
authorMichael <icarus@dabo.de>2012-03-03 13:21:11 +0100
committerMichael <icarus@dabo.de>2012-03-03 13:21:11 +0100
commit81a8d4f9dbd32de133e647c87a5394dd52f009fe (patch)
treef1264d57804d810758163bdddf734f82e7d1091f /view/theme/testbubble/conversation.tpl
parentccfe402fb0b92dc8e62dc87137743851441e27f6 (diff)
parent9d885c4801e74205dc958aaf4a17f44c4d9134d6 (diff)
downloadvolse-hubzilla-81a8d4f9dbd32de133e647c87a5394dd52f009fe.tar.gz
volse-hubzilla-81a8d4f9dbd32de133e647c87a5394dd52f009fe.tar.bz2
volse-hubzilla-81a8d4f9dbd32de133e647c87a5394dd52f009fe.zip
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/theme/testbubble/conversation.tpl')
-rwxr-xr-xview/theme/testbubble/conversation.tpl14
1 files changed, 13 insertions, 1 deletions
diff --git a/view/theme/testbubble/conversation.tpl b/view/theme/testbubble/conversation.tpl
index 33cedfb1e..43bb1dd47 100755
--- a/view/theme/testbubble/conversation.tpl
+++ b/view/theme/testbubble/conversation.tpl
@@ -1,6 +1,18 @@
{{ for $threads as $thread }}
<div id="tread-wrapper-$thread.id" class="tread-wrapper">
- $thread.html
+ {{ for $thread.items as $item }}
+ {{if $item.comment_firstcollapsed}}
+ <div class="hide-comments-outer">
+ <span id="hide-comments-total-$thread.id" class="hide-comments-total">$thread.num_comments</span> <span id="hide-comments-$thread.id" class="hide-comments fakelink" onclick="showHideComments($thread.id);">$thread.hide_text</span>
+ </div>
+ <div id="collapsed-comments-$thread.id" class="collapsed-comments" style="display: none;">
+ {{endif}}
+ {{if $item.comment_lastcollapsed}}</div>{{endif}}
+
+ {{ inc $item.template }}{{ endinc }}
+
+
+ {{ endfor }}
</div>
{{ endfor }}