458c59490f
* fix passing initialKey to the top level secret create page * add service that uses the private routing service because of various bugs * make custom router service more like the bundled router service * clear the store cache when the model changes
20 lines
557 B
Handlebars
20 lines
557 B
Handlebars
<div class="field">
|
|
<p class="control has-icons-left has-icons-right">
|
|
<input
|
|
class="filter input"
|
|
disabled={{disabled}}
|
|
value={{@filter}}
|
|
placeholder={{ or @placeholder "Filter keys" }}
|
|
type="text"
|
|
|
|
oninput={{action "handleInput" value="target.value"}}
|
|
onkeyup={{action "handleKeyUp" }}
|
|
onkeydown={{action "handleKeyPress"}}
|
|
onfocus={{action "setFilterFocused" true}}
|
|
onblur={{action "setFilterFocused" false}}
|
|
/>
|
|
|
|
{{i-con glyph="ios-search-strong" class="is-left has-text-grey" size=18}}
|
|
</p>
|
|
</div>
|