diff options
author | Mario <mario@mariovavti.com> | 2021-06-29 08:45:48 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-29 08:45:48 +0000 |
commit | 0503914527643210af25d9e036238e6ebfee889e (patch) | |
tree | ba9935b5ad2e739a51db3a9e14cf03559a3c8480 /view | |
parent | cb65ae68485ed0abb364bc055ff97a28ed70f899 (diff) | |
download | volse-hubzilla-0503914527643210af25d9e036238e6ebfee889e.tar.gz volse-hubzilla-0503914527643210af25d9e036238e6ebfee889e.tar.bz2 volse-hubzilla-0503914527643210af25d9e036238e6ebfee889e.zip |
fix deleting and starring in unthreaded view
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/search_item.tpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl index f94aaf37d..49b324f9d 100644 --- a/view/tpl/search_item.tpl +++ b/view/tpl/search_item.tpl @@ -71,6 +71,7 @@ <div class="spinner s"></div> </div> </div> + {{if $item.star || $item.thread_action_menu || $item.drop.dropping}} <div class="btn-group"> <button type="button" class="btn btn-outline-secondary btn-sm dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-cog"></i> @@ -81,14 +82,15 @@ {{/if}} {{if $item.thread_action_menu}} {{foreach $item.thread_action_menu as $mitem}} - <a class="dropdown-item" {{if $mitem.href}}href="{{$mitem.href}}"{{/if}} {{if $mitem.action}}onclick="{{$mitem.action}}"{{/if}} {{if $mitem.title}}title="{{$mitem.title}}"{{/if}} ><i class="fa fa-fw fa-{{$mitem.icon}} generic-icons-nav"></i>{{$mitem.title}}</a></li> + <a class="dropdown-item" {{if $mitem.href}}href="{{$mitem.href}}"{{/if}} {{if $mitem.action}}onclick="{{$mitem.action}}"{{/if}} {{if $mitem.title}}title="{{$mitem.title}}"{{/if}} ><i class="fa fa-fw fa-{{$mitem.icon}} generic-icons-nav"></i>{{$mitem.title}}</a> {{/foreach}} {{/if}} {{if $item.drop.dropping}} - <a class="dropdown-item" href="item/drop/{{$item.id}}" onclick="return confirmDelete();" title="{{$item.drop.delete}}" ><i class="fa fa-fw fa-trash-o generic-icons-nav"></i>{{$item.drop.delete}}</a></li> + <a class="dropdown-item" href="#" onclick="dropItem('item/drop/{{$item.id}}', '#thread-wrapper-{{$item.id}}', '{{$item.mid}}'); return false;" title="{{$item.drop.delete}}" ><i class="generic-icons-nav fa fa-fw fa-trash-o"></i>{{$item.drop.delete}}</a> {{/if}} </div> </div> + {{/if}} </div> {{if $item.star && $item.star.isstarred}} <div class="btn-group" id="star-button-{{$item.id}}"> |