08c5b376e7
* ui: Replaces Service listing filterbar with a phrase-editor search (#5507) 1. New phrase-editor restricting search to whole phrases (acts on enter key). Allows removal of previously entered phrases 2. Searching now allows arrays of terms, multiple terms work via AND
11 lines
432 B
Handlebars
11 lines
432 B
Handlebars
<ul>
|
|
{{#each items as |item index|}}
|
|
<li>
|
|
<button type="button" onclick={{action remove index}}>Remove</button>{{item}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
<label class="type-search">
|
|
<span>Search</span>
|
|
<input onchange={{action add}} onsearch={{action add}} oninput={{action oninput}} onkeydown={{action onkeydown}} placeholder="{{placeholder}}" value="{{item}}" type="search" name="s" autofocus="autofocus" />
|
|
</label> |