Ghost/ghost/admin/app/components/tabs/tab-panel.hbs

12 lines
267 B
Handlebars
Raw Normal View History

<div
id="{{this.tabId}}-panel"
role="tabpanel"
tabindex="0"
aria-labelledby="{{this.tabId}}"
class="tab-panel {{if this.isSelectedTab "tab-panel-selected" }}"
>
{{#if (or this.isSelectedTab @forceRender)}}
{{yield}}
{{/if}}
</div>