mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
12 lines
578 B
Handlebars
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>
|