mirror of https://github.com/zulip/zulip.git
user_profile: Navigate tabs by arrow keys.
Left/right keys arrows in User Profile now navigates between tabs when it's first opened. Fixes #28615
This commit is contained in:
parent
e4cf5ba0c5
commit
8e0518d777
|
@ -481,6 +481,9 @@ export function show_user_profile(user, default_tab_key = "profile-tab") {
|
|||
const $elem = toggler.get();
|
||||
$elem.addClass("large allow-overflow");
|
||||
$("#tab-toggle").append($elem);
|
||||
setTimeout(() => {
|
||||
$(".ind-tab.selected").trigger("focus");
|
||||
}, 0);
|
||||
if (show_user_subscribe_widget) {
|
||||
reset_subscribe_widget();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue