mirror of https://github.com/zulip/zulip.git
navbar_help_menu: Migrate module to typescript.
Signed-off-by: sayyedarib <sayyedaribhussain4321@gmail.com>
This commit is contained in:
parent
2cf8f1c063
commit
b430ba2bd5
|
@ -152,7 +152,7 @@ EXEMPT_FILES = make_set(
|
|||
"web/src/narrow_history.ts",
|
||||
"web/src/narrow_title.ts",
|
||||
"web/src/navbar_alerts.js",
|
||||
"web/src/navbar_help_menu.js",
|
||||
"web/src/navbar_help_menu.ts",
|
||||
"web/src/navbar_menus.js",
|
||||
"web/src/navigate.js",
|
||||
"web/src/onboarding_steps.js",
|
||||
|
|
|
@ -6,7 +6,7 @@ import {page_params} from "./page_params";
|
|||
import * as popover_menus from "./popover_menus";
|
||||
import {parse_html} from "./ui_util";
|
||||
|
||||
export function initialize() {
|
||||
export function initialize(): void {
|
||||
popover_menus.register_popover_menu("#help-menu", {
|
||||
theme: "navbar-dropdown-menu",
|
||||
placement: "bottom",
|
||||
|
@ -39,12 +39,12 @@ export function initialize() {
|
|||
},
|
||||
onHidden(instance) {
|
||||
instance.destroy();
|
||||
popover_menus.popover_instances.help_menu = undefined;
|
||||
popover_menus.popover_instances.help_menu = null;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
export function toggle() {
|
||||
export function toggle(): void {
|
||||
// NOTE: Since to open help menu, you need to click on help navbar icon (which calls
|
||||
// tippyjs.hideAll()), or go via gear menu if using hotkeys, we don't need to
|
||||
// call tippyjs.hideAll() for it.
|
Loading…
Reference in New Issue