From c06993ff1d67929562d129a9cae48dea8766897d Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 15 Mar 2023 10:58:55 +0000 Subject: [PATCH] Removed space inserted before embed tags inserted by EEPROM. --- assets/js/misuzu/forum/editor.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/js/misuzu/forum/editor.js b/assets/js/misuzu/forum/editor.js index 4603fdf..2afd01f 100644 --- a/assets/js/misuzu/forum/editor.js +++ b/assets/js/misuzu/forum/editor.js @@ -169,8 +169,7 @@ Misuzu.Forum.Editor.init = function() { uploadElemProgressText.textContent = ''; const insertTheLinkIntoTheBoxEx2 = function() { - // should be more intelligent than just ploinking a space in front - $insertTags(postingText, ' ' + insertText, ''); + $insertTags(postingText, insertText, ''); postingText.value = postingText.value.trim(); };