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); -}