diff options
author | friendica <info@friendica.com> | 2012-03-20 23:59:02 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-20 23:59:02 -0700 |
commit | db02eebde1dc4a95173d5295e603af238e2911aa (patch) | |
tree | 2e68ecb72e7e63e9f17ab687ffc499ce3b59c750 /view/theme/facepark/conversation.tpl | |
parent | 6c7b619b34e60f391087c669732b9efd0344d41c (diff) | |
parent | efd7c14c24aa45878ddc412413ea1593cafcd651 (diff) | |
download | volse-hubzilla-db02eebde1dc4a95173d5295e603af238e2911aa.tar.gz volse-hubzilla-db02eebde1dc4a95173d5295e603af238e2911aa.tar.bz2 volse-hubzilla-db02eebde1dc4a95173d5295e603af238e2911aa.zip |
Merge branch 'pull'
Diffstat (limited to 'view/theme/facepark/conversation.tpl')
-rwxr-xr-x | view/theme/facepark/conversation.tpl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/view/theme/facepark/conversation.tpl b/view/theme/facepark/conversation.tpl new file mode 100755 index 000000000..43bb1dd47 --- /dev/null +++ b/view/theme/facepark/conversation.tpl @@ -0,0 +1,25 @@ +{{ for $threads as $thread }} +<div id="tread-wrapper-$thread.id" class="tread-wrapper"> + {{ 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 }} + +{{ if $dropping }} +<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();"> + <div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div> + <div id="item-delete-selected-desc" >$dropping</div> +</div> +<div id="item-delete-selected-end"></div> +{{ endif }} |