2019-09-01 01:37:04 +00:00
|
|
|
(() => {
|
2022-02-21 03:16:15 +00:00
|
|
|
addInitHook("end_init", () => {
|
|
|
|
$(".create_convo_link").click((event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
$(".convo_create_form").removeClass("auto_hide");
|
|
|
|
});
|
|
|
|
$(".convo_create_form .close_form").click((event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
$(".convo_create_form").addClass("auto_hide");
|
|
|
|
});
|
|
|
|
});
|
2019-09-01 01:37:04 +00:00
|
|
|
})();
|