Files
zulip/web/templates/org_logo_tooltip.hbs
Sayam Samal 70013d0f28 navbar: Add navigate to home view tooltip to the organization logo.
The organization logo in the upper left navigates to the user's home
view. We add a tooltip to make this easier to discover.

We show `Esc` as the keyboard shortcut here, unless the user has
disabled it, in which case we show the alt shortcut `Ctrl` + `[`.

Fixes #29185.
2024-03-06 13:58:36 -08:00

9 lines
198 B
Handlebars

<div>
<div>{{t "Go to home view"}} ({{home_view}})</div>
</div>
{{#if escape_navigates_to_home_view}}
{{tooltip_hotkey_hints "Esc"}}
{{else}}
{{tooltip_hotkey_hints "Ctrl" "["}}
{{/if}}