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:
nimishmedatwal 2024-01-29 16:47:34 +05:30 committed by Tim Abbott
parent e4cf5ba0c5
commit 8e0518d777
1 changed files with 3 additions and 0 deletions

View File

@ -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();
}