diff --git a/gui/app/components/section/tabular/type-editor.js b/gui/app/components/section/tabular/type-editor.js index 5bd8cd46..0d13080f 100644 --- a/gui/app/components/section/tabular/type-editor.js +++ b/gui/app/components/section/tabular/type-editor.js @@ -64,11 +64,10 @@ export default Component.extend(Modals, Notifier, { addEditor() { schedule('afterRender', () => { let options = { - cache_suffix: '?v=505', + cache_suffix: '?v=5012', selector: '#' + this.get('editorId'), relative_urls: false, browser_spellcheck: true, - gecko_spellcheck: false, statusbar: false, inline: true, paste_data_images: true, @@ -108,7 +107,7 @@ export default Component.extend(Modals, Notifier, { }; if (typeof tinymce === 'undefined') { - $.getScript('/tinymce/tinymce.min.js?v=505', function () { + $.getScript('/tinymce/tinymce.min.js?v=5012', function () { window.tinymce.dom.Event.domLoaded = true; tinymce.baseURL = '//' + window.location.host + '/tinymce'; tinymce.suffix = '.min'; diff --git a/gui/app/components/section/wysiwyg/type-editor.js b/gui/app/components/section/wysiwyg/type-editor.js index d643eccc..c47fba50 100644 --- a/gui/app/components/section/wysiwyg/type-editor.js +++ b/gui/app/components/section/wysiwyg/type-editor.js @@ -34,11 +34,11 @@ export default Component.extend({ schedule('afterRender', () => { let options = { - cache_suffix: '?v=505', + cache_suffix: '?v=5012', selector: '#' + this.get('editorId'), relative_urls: false, browser_spellcheck: true, - gecko_spellcheck: false, + contextmenu: false, statusbar: false, inline: false, paste_data_images: true, @@ -117,7 +117,7 @@ export default Component.extend({ }; if (typeof tinymce === 'undefined') { - $.getScript('/tinymce/tinymce.min.js?v=505', function () { + $.getScript('/tinymce/tinymce.min.js?v=5012', function () { window.tinymce.dom.Event.domLoaded = true; tinymce.baseURL = '//' + window.location.host + '/tinymce'; tinymce.suffix = '.min';