@sapui5/sap.ui.richtexteditor 1.84.26 → 1.84.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
|
|
8
8
|
(c) Copyright 2009-2020 SAP SE. All rights reserved</copyright>
|
|
9
|
-
<version>1.84.
|
|
9
|
+
<version>1.84.28</version>
|
|
10
10
|
|
|
11
11
|
<documentation>A rich text editor (RTE) control. Requires installation of an additional rich text editor library.</documentation>
|
|
12
12
|
|
|
@@ -1787,7 +1787,14 @@ sap.ui.define([
|
|
|
1787
1787
|
init_instance_callback: function(oEditor) {
|
|
1788
1788
|
this._oEditor = oEditor;
|
|
1789
1789
|
fnOnInit();
|
|
1790
|
-
}.bind(this)
|
|
1790
|
+
}.bind(this),
|
|
1791
|
+
setup: function(editor) {
|
|
1792
|
+
editor.on('Init', function() {
|
|
1793
|
+
if (this.editorManager.majorVersion === "4") {
|
|
1794
|
+
editor.schema.getSpecialElements()['iframe'] = new RegExp('</iframe[^>]*>', 'gi');
|
|
1795
|
+
}
|
|
1796
|
+
});
|
|
1797
|
+
}
|
|
1791
1798
|
};
|
|
1792
1799
|
/*eslint-enable camelcase */
|
|
1793
1800
|
|