mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
18 lines
670 B
Handlebars
18 lines
670 B
Handlebars
{{#if showButton}}
|
|
<button class="gh-cardmenu-button" {{action "openMenu"}}>{{inline-svg "plus"}}</button>
|
|
{{/if}}
|
|
{{#if isOpen}}
|
|
<div class="gh-cardmenu">
|
|
<div class="gh-cardmenu-search">
|
|
{{inline-svg "search.svg"}}
|
|
{{gh-input query class="gh-input gh-cardmenu-search-input" placeholder="Search for a card..." type="text" update=(action (mut query)) key-press=(action "updateSelection")}}
|
|
</div>
|
|
<div class="gh-cardmenu-divider">
|
|
Primary
|
|
</div>
|
|
{{#each toolbar as |tool index|}}
|
|
{{koenig-menu-item tool=tool editor=editor range=range selected=tool.selected clicked=(action "closeMenu")}}
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|