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.
- package/bundles/tnx-shared.umd.js +3 -3
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/components/tn-tinymce/tn-tinymce.component.d.ts.map +1 -1
- package/esm2015/components/tn-tinymce/tn-tinymce.component.js +4 -4
- package/fesm2015/tnx-shared.js +3 -3
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
};
|