From 90072213ee4499e029461398d43790cddbf3e0e8 Mon Sep 17 00:00:00 2001 From: fowr <89118232+perdedora@users.noreply.github.com> Date: Wed, 25 Dec 2024 15:59:43 -0300 Subject: [PATCH] Remove tegaki form in quick reply --- js/quick-reply.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/quick-reply.js b/js/quick-reply.js index cd1b9e8a..2aee7c69 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -252,6 +252,11 @@ $(this).remove(); } + // Remove tegaki if existent + if ($(this).is('#tegaki-form')) { + $(this).remove(); + } + // Remove upload selection if ($td.is('#upload_selection')) { $(this).remove();