mirror of https://github.com/zulip/zulip.git
message_edit_history: Fix implicit use of any.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
0c11a842c1
commit
0a30bb9ee8
|
@ -311,7 +311,11 @@ export function initialize(): void {
|
|||
}
|
||||
});
|
||||
|
||||
$("body").on("focus", "#message-history-overlay .overlay-message-info-box", (e) => {
|
||||
messages_overlay_ui.activate_element(e.target, keyboard_handling_context);
|
||||
});
|
||||
$("body").on(
|
||||
"focus",
|
||||
"#message-history-overlay .overlay-message-info-box",
|
||||
function (this: HTMLElement) {
|
||||
messages_overlay_ui.activate_element(this, keyboard_handling_context);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue