Ghost/ghost/admin/app/components/tabs/tab-panel.hbs
Elena Baidakova f1e476d6af
Add forceRender property to tabs (#15699)
closes TryGhost/Team#2163
- `forceRender` property adds ability to render content of tabs in
advance (even if tab wasn't selected)
2022-10-26 18:03:29 +01:00

12 lines
267 B
Handlebars

<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>