diff --git a/Classes/Loader.php b/Classes/Loader.php
index 9d4db4038b438d8dc186f4fee1e23187a323b606..6d9a19513f0380e98248906e13ec2c182676cbfe 100644
--- a/Classes/Loader.php
+++ b/Classes/Loader.php
@@ -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
+?>