From 2cf1300498cbd0d8ea49917ff61778d8d73e1065 Mon Sep 17 00:00:00 2001 From: mummified-corroding-granny Date: Mon, 13 Feb 2023 18:57:52 +0000 Subject: [PATCH] chat: stop console error after clicking marsey emoji speed modal (#119) Kindly, As per $title. This is just a suggestion implementation Whenever we click any marsey in the speed modal, it generates an error in developer tools console because markdown() is not defined. I suspect not being available is expected because that function is for re-rendering the markdown preview (????? when I look at chat code it is all spaghette to me) Thanks, granny Reviewed-on: https://fsdfsd.net/rDrama/rDrama/pulls/119 Co-authored-by: mummified-corroding-granny Co-committed-by: mummified-corroding-granny --- files/assets/js/emoji_modal.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/files/assets/js/emoji_modal.js b/files/assets/js/emoji_modal.js index 51810b245..ae3418f21 100644 --- a/files/assets/js/emoji_modal.js +++ b/files/assets/js/emoji_modal.js @@ -444,7 +444,9 @@ function populate_speed_emoji_modal(results, textbox) speed_carot_modal.style.display = "none"; textbox.value = textbox.value.replace(new RegExp(current_word+"(?=\\s|$)", "g"), `:${result}:`) textbox.focus() - markdown(textbox) + if (document.location.pathname != '/chat'){ + markdown(textbox) + } }); // Pack emoji_option.appendChild(emoji_option_img);