2018-04-06 19:49:16 +03:00
|
|
|
<input
|
|
|
|
placeholder="Enter url"
|
2021-02-17 01:01:46 +03:00
|
|
|
value={{this._href}}
|
2021-03-09 14:42:54 +03:00
|
|
|
class="kg-link-input pa2 pr6 mih-100 ba br3 shadow-2 f8 lh-heading tracked-2 outline-0 b--green h10 nudge-top--8"
|
2021-02-17 01:01:46 +03:00
|
|
|
{{on "input" (action (mut this._href) value="target.value")}}
|
|
|
|
{{on "keydown" (action "inputKeydown")}}
|
2018-04-06 19:49:16 +03:00
|
|
|
/>
|
|
|
|
|
2021-02-17 01:01:46 +03:00
|
|
|
{{#if this._href}}
|
|
|
|
<button aria-label="Close" class="kg-input-bar-close" type="button" {{on "click" (action "clear")}}>
|
2018-04-24 12:15:54 +03:00
|
|
|
{{svg-jar "close" class="ih2 stroke-midlightgrey-l2"}}
|
2018-04-06 19:49:16 +03:00
|
|
|
</button>
|
|
|
|
{{/if}}
|