diff --git a/resources/assets/javascripts/lib/wysiwyg.js b/resources/assets/javascripts/lib/wysiwyg.js
index c54581dbaf4af33cadb2abcd709a7bacf5faf738..95a4f1ac5c791748c9a04cb1934ae4823a9e5206 100644
--- a/resources/assets/javascripts/lib/wysiwyg.js
+++ b/resources/assets/javascripts/lib/wysiwyg.js
@@ -184,8 +184,7 @@ function replaceTextarea(textarea) {
 
         ckeditor.ui.focusTracker.on('change:isFocused', (evt, name, isFocused) => {
             if (!isFocused) {
-                ckeditor.setData(wysiwyg.markAsHtml(ckeditor.getData()));
-                ckeditor.updateSourceElement();
+                ckeditor.updateSourceElement(wysiwyg.markAsHtml(ckeditor.getData()));
             }
         });
 
@@ -197,11 +196,6 @@ function replaceTextarea(textarea) {
         // Tell MathJax v2.7 to leave the editor alone
         ckeditor.ui.element.classList.add('tex2jax_ignore');
 
-        // TODO: Kein updateSourceElement im SourceEditing-Modus
-        //     $(ckeditor.container.$).on('blur', '.CodeMirror', function (event) {
-        //         ckeditor.updateElement(); // also update in source mode
-        //     });
-
         return ckeditor;
     }