Hi @ronnie09 , Same thing happens to me. Everything hangs up. I think this is a bug in RTE source edit validation.
If you try this
<h1 style="color: blue">A Blue Heading</h1>closing the source edit validates the content and the end result automatically looks like this
<h1 style="color: blue;">A Blue Heading</h1>I have checked the course code from /libs/clientlibs/granite/richtext/js/rte/CUI.RichText.js, The following JavaScript method runs into a deadlock.
/**
* Get content from RTE and push it into source editor.
* @private
*/
syncValue: function () {
if (!this.sourceEditMode || this.togglingSourceEdit) {
var html = this.editorKernel.getProcessedHtml();
this.$sourceEditor.val(html);
}
}