mirror of https://github.com/zulip/zulip.git
17 lines
529 B
TypeScript
17 lines
529 B
TypeScript
|
import $ from "jquery";
|
||
|
|
||
|
export function initialize(): void {
|
||
|
// this will hide the alerts that you click "x" on.
|
||
|
$("body").on("click", ".alert-box > div .exit", function () {
|
||
|
const $alert = $(this).closest(".alert-box > div");
|
||
|
$alert.addClass("fade-out");
|
||
|
setTimeout(() => {
|
||
|
$alert.removeClass("fade-out show");
|
||
|
}, 300);
|
||
|
});
|
||
|
|
||
|
$(".alert-box").on("click", ".stackframe .expand", function () {
|
||
|
$(this).parent().siblings(".code-context").toggle("fast");
|
||
|
});
|
||
|
}
|