mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
(and multiplies by pasting more) by disabling WYSIWYG comment editor for everyone. Thanks to xet7. TODO later: Fix wysiwyg editor paste bug. Opens #2890
6 lines
174 B
JavaScript
6 lines
174 B
JavaScript
Meteor.startup(() => {
|
|
const RCCE = process.env.RICHER_CARD_COMMENT_EDITOR;
|
|
if (RCCE) {
|
|
Meteor.settings.public.RICHER_CARD_COMMENT_EDITOR = RCCE !== 'false';
|
|
}
|
|
});
|