Prevent event bubbling on search toggles to keep dropdown open

This commit is contained in:
tms 2013-02-25 22:14:58 -05:00
parent ea9196a8a2
commit 7088dfce9f

View File

@ -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>