We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8990ff1 + c6472c4 commit b1c4935Copy full SHA for b1c4935
tine20/Tinebase/js/extFixes.js
@@ -52,6 +52,10 @@ Ext.apply(Ext.form.HtmlEditor.prototype, {
52
}(),
53
onClipboardEvent: async function (event) {
54
const clipboardData = event.clipboardData || window.clipboardData;
55
+ if (clipboardData.files.length > 0) {
56
+ // fall back to default behaviour when pasting image
57
+ return;
58
+ }
59
const plainText = clipboardData.getData('text/plain');
60
const htmlText = clipboardData.getData('text/html');
61
let result = {
0 commit comments