diff options
author | friendica <info@friendica.com> | 2012-03-02 00:10:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-02 00:10:05 -0800 |
commit | 90bdddca0d1b2e2128646d1f698b6d514e748001 (patch) | |
tree | 2e7855a389313397b310a70b0e6072a5ba6dcce1 /view/theme/duepuntozero/conversation.tpl | |
parent | be231e346658eb68e518324ba995aaccb7abd055 (diff) | |
parent | 3a609adfb77a94d5b8681496a9306d9cf4efcafb (diff) | |
download | volse-hubzilla-90bdddca0d1b2e2128646d1f698b6d514e748001.tar.gz volse-hubzilla-90bdddca0d1b2e2128646d1f698b6d514e748001.tar.bz2 volse-hubzilla-90bdddca0d1b2e2128646d1f698b6d514e748001.zip |
Merge branch 'pull'
Diffstat (limited to 'view/theme/duepuntozero/conversation.tpl')
-rwxr-xr-x | view/theme/duepuntozero/conversation.tpl | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/view/theme/duepuntozero/conversation.tpl b/view/theme/duepuntozero/conversation.tpl index 33cedfb1e..43bb1dd47 100755 --- a/view/theme/duepuntozero/conversation.tpl +++ b/view/theme/duepuntozero/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 }} |