Files
zulip/web/templates/popovers/playground_links_popover.hbs
Sayam Samal fe1f8afb1b playground_popover: Redesign popover using the new "popover-menu" theme.
As part of the popover menu redesign, this redesigns the playground
links popover using the new "popover-menu" tippy theme and improves
accessibility by using appropriate ARIA attributes.

Fixes part of #28699.
2024-07-03 17:01:46 -07:00

12 lines
578 B
Handlebars

<div class="popover-menu playground-links-popover" data-simplebar data-simplebar-tab-index="-1">
<ul role="menu" class="popover-menu-list">
{{#each playground_info}}
<li role="none" class="link-item popover-menu-list-item">
<a href="{{this/playground_url}}" target="_blank" rel="noopener noreferrer" role="menuitem" class="popover_playground_link popover-menu-link" tabindex="0">
<span class="popover-menu-label">{{t "View in {name}" }}</span>
</a>
</li>
{{/each}}
</ul>
</div>