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