minify icon indicating copy to clipboard operation
minify copied to clipboard

TinyMCE cannot be minified

Open danielmarschall opened this issue 1 year ago • 0 comments

TinyMCE contains the following JavaScript:

...
    const hasImage = dataTransfer => exists(dataTransfer.files, file => /^image\//.test(file.type));
    const needsCustomInternalDrop = (dom, schema, target, dropContent) => {
...

//.test(file.type)); seems to be mistaken with a comment and hence the resulting JavaScript raises a syntax error.

danielmarschall avatar Jul 30 '24 14:07 danielmarschall