summaryrefslogtreecommitdiffstats
path: root/server/richer-editor-setting-helper.js
blob: 4a3d56abc856c8fe312a0cee53fbf6b7a8b8e660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Meteor.startup(() => {

  // Disable comment WYSIWYG editor for everyone to fix
  // Pasting text into a card is adding a line before and after
  // (and multiplies by pasting more)
  // https://github.com/wekan/wekan/issues/2890
  Meteor.settings.public.RICHER_CARD_COMMENT_EDITOR = 'false';

  //// Old original code for setting:
  //const RCCE = process.env.RICHER_CARD_COMMENT_EDITOR;
  //if (RCCE) {
  //  Meteor.settings.public.RICHER_CARD_COMMENT_EDITOR = RCCE !== 'false';
  //}
});