mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-14 00:50:14 -04:00
Prevent event bubbling on search toggles to keep dropdown open
This commit is contained in:
parent
ea9196a8a2
commit
7088dfce9f
1 changed files with 2 additions and 2 deletions
|
@ -7,10 +7,10 @@
|
|||
<li class='heading'>
|
||||
{{name}}
|
||||
{{#if more}}
|
||||
<a href='#' class='filter' {{action moreOfType type target="view"}}>{{i18n show_more}}</a>
|
||||
<a href='#' class='filter' {{action moreOfType type target="view" bubbles=false}}>{{i18n show_more}}</a>
|
||||
{{else}}
|
||||
{{#if view.showCancelFilter}}
|
||||
<a href='#' class='filter' {{action cancelType target="view"}}><i class='icon icon-remove-sign'></i></a>
|
||||
<a href='#' class='filter' {{action cancelType target="view" bubbles=false}}><i class='icon icon-remove-sign'></i></a>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
</li>
|
||||
|
|
Loading…
Reference in a new issue