Remove unused function

This commit is contained in:
Jakub Vrana
2025-09-15 19:51:56 +02:00
parent 08f93d6d09
commit fdc2326376

View File

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