diff options
author | friendica <info@friendica.com> | 2014-11-18 16:58:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-18 16:58:36 -0800 |
commit | 11f0b45a9015a717e6e0da1bfd5a1c61381d64ed (patch) | |
tree | 073808e68c0baa3cbdad511db49f4bc9792acfb4 /view/tpl | |
parent | 38d50cabd4b3db859c5ac33f02760b1b00a993e5 (diff) | |
download | volse-hubzilla-11f0b45a9015a717e6e0da1bfd5a1c61381d64ed.tar.gz volse-hubzilla-11f0b45a9015a717e6e0da1bfd5a1c61381d64ed.tar.bz2 volse-hubzilla-11f0b45a9015a717e6e0da1bfd5a1c61381d64ed.zip |
blog mode - turn the comment link into a button and group with the likes/dislikes
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/conv_list.tpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index b9a966e93..444734f48 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -104,7 +104,12 @@ </ul> </div> <div id="like-rotator-{{$item.id}}" class="like-rotator"></div> - <div class="wall-item-tools-left{{if $item.like_count && $item.dislike_count}} btn-group{{/if}}"> + <div class="wall-item-tools-left btn-group"> + + + <div class="wall-item-list-comments btn-group"><button class="btn btn-default btn-sm" onclick="window.location.href='{{$item.llink}}'; return false;">{{$item.comment_count_txt}}{{if $item.unseen_comments}} +<span class="unseen-wall-indicator-{{$item.id}}">, {{$item.list_unseen_txt}}{{/if}}</span></button></div>{{if $item.unseen_comments}}<div class="unseen-wall-indicator-{{$item.id}} btn-group"><button class="btn btn-default btn-sm" title="{{$item.markseen}}" onclick="markItemRead({{$item.id}}); return false;"><i class="icon-check"></i></div>{{/if}} + {{if $item.like_count}} <div class="btn-group"> <button type="button" class="btn btn-default btn-sm wall-item-like dropdown-toggle" data-toggle="dropdown" id="wall-item-like-{{$item.id}}">{{$item.like_count}} {{$item.like_button_label}}</button> @@ -164,8 +169,6 @@ {{/if}} </div> <div class="clear"></div> - <div class="wall-item-list-comments"><a href="{{$item.llink}}">{{$item.comment_count_txt}}{{if $item.unseen_comments}} -<span class="unseen-wall-indicator-{{$item.id}}">, {{$item.list_unseen_txt}}{{/if}}</span></a>{{if $item.unseen_comments}}<span class="unseen-wall-indicator-{{$item.id}}"> <button class="btn btn-default" title="{{$item.markseen}}" onclick="markItemRead({{$item.id}}); return false;"><i class="icon-check"></i></span>{{/if}}</div> </div> <div class="wall-item-wrapper-end"></div> <div class="wall-item-outside-wrapper-end {{$item.indent}}" ></div> |