tnx-shared 5.3.268 → 5.3.269

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53182,6 +53182,9 @@
53182
53182
  config.toolbar = false;
53183
53183
  config.mobile.toolbar = false;
53184
53184
  }
53185
+ if (this.control.isFullPage && !config.plugins.some(function (x) { return x.includes('fullpage'); })) {
53186
+ config.plugins[0] += ' fullpage';
53187
+ }
53185
53188
  setTimeout(function () {
53186
53189
  tinymce.init(config);
53187
53190
  });
@@ -53395,9 +53398,6 @@
53395
53398
  // config.toolbar = 'formatselect | bold italic Strikethrough forecolor backcolor| alignleft aligncenter alignright alignjustify | bullist numlist';
53396
53399
  config.toolbar = 'bold italic Strikethrough forecolor backcolor | bullist numlist | fullscreen';
53397
53400
  }
53398
- if ($this.control.isFullPage && !config.some(function (x) { return x == 'fullpage'; })) {
53399
- config.plugins.push(' fullpage');
53400
- }
53401
53401
  config.paste_data_images = true;
53402
53402
  return config;
53403
53403
  };