summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rwxr-xr-xclient/components/main/editor.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/components/main/editor.js b/client/components/main/editor.js
index 39c03aa9..272be197 100755
--- a/client/components/main/editor.js
+++ b/client/components/main/editor.js
@@ -57,6 +57,9 @@ const sanitizeXss = (input, options) => {
}
}
}
+ /* Don't use swipebox on markdown, so that img tag can now use width
+ * and height parameters. https://github.com/wekan/wekan/issues/2956
+ * Previously this was added at https://github.com/wekan/wekan/pull/2593
} else if (tag === 'img') {
if (!options.isClosing) {
const src = getAttr('src');
@@ -64,6 +67,7 @@ const sanitizeXss = (input, options) => {
return `<a href='${src}' class='swipebox'><img src='${src}' class="attachment-image-preview mCS_img_loaded"></a>`;
}
}
+ */
}
return undefined;
},