From fdc232637633f6c4dcfe59095fc9104f860aad12 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 15 Sep 2025 19:51:56 +0200 Subject: [PATCH] Remove unused function --- editor/static/editing.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/editor/static/editing.js b/editor/static/editing.js index 5533c5ac..ac397632 100644 --- a/editor/static/editing.js +++ b/editor/static/editing.js @@ -53,13 +53,3 @@ function whisperClick(event) { return false; } } - -/** Add new attachment field -* @this HTMLInputElement -*/ -function emailFileChange() { - const el = this.cloneNode(true); - this.onchange = () => { }; - el.value = ''; - this.parentNode.appendChild(el); -}