Skip to content
Snippets Groups Projects
Commit d68f392b authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

Merge branch 'master' into 'master'

[BUGFIX] Fix for multiple TinyMCE in same page.

Avoids multiple initialisation which was breaking the save in TYPO3.

See merge request !6
parents 9f8c1340 4bd962b5
No related branches found
No related tags found
No related merge requests found
......@@ -299,11 +299,16 @@ class Loader {
$configuration .= '
var $ = jQuery = window.TYPO3.jQuery;
var RTEarea = RTEarea || window.RTEarea;
define([\'TYPO3/CMS/Tinymce/../../../../typo3conf/ext/tinymce/tinymce_node_modules/tinymce/jquery.tinymce.min.js\'], function () {
$(\'.tinymce4_rte\').tinymce({
script_url : \'' . $this->getPath($tinymceSource, TRUE) . '\',
' . $this->replaceTypo3Paths($this->tinymceConfiguration['configurationData']) . '
});
if(!$(\'.tinymce4_rte\').data(\'first\')){
$(\'.tinymce4_rte\').data(\'first\', true);
$(\'.tinymce4_rte\').tinymce({
script_url : \'' . $this->getPath($tinymceSource, TRUE) . '\',
' . $this->replaceTypo3Paths($this->tinymceConfiguration['configurationData']) . '
});
}
});
';
$configuration .= $this->tinymceConfiguration['postJS'];
......@@ -410,4 +415,4 @@ class Loader {
}
}
?>
\ No newline at end of file
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment