@innovastudio/contentbuilder 1.2.0 → 1.2.1
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
|
@@ -14000,6 +14000,7 @@ class HtmlUtil {
|
|
|
14000
14000
|
const builderStuff = this.builder.builderStuff;
|
|
14001
14001
|
const viewhtmlexternal = builderStuff.querySelector('.viewhtmlexternal');
|
|
14002
14002
|
let codeEditor = viewhtmlexternal.querySelector('.input-code-editor');
|
|
14003
|
+
console.log(codeEditor.innerHTML);
|
|
14003
14004
|
|
|
14004
14005
|
if (codeEditor.innerHTML === '') {
|
|
14005
14006
|
// First time code editor load
|
|
@@ -14025,7 +14026,9 @@ class HtmlUtil {
|
|
|
14025
14026
|
theme: this.builder.styleDark || this.builder.styleColoredDark ? 'vs-dark' : ''
|
|
14026
14027
|
});
|
|
14027
14028
|
this.builder.codeEditorExternal.onKeyUp(() => {
|
|
14029
|
+
console.log(source);
|
|
14028
14030
|
source.value = this.builder.codeEditorExternal.getModel().getValue();
|
|
14031
|
+
console.log(this.builder.codeEditorExternal.getModel().getValue());
|
|
14029
14032
|
});
|
|
14030
14033
|
});
|
|
14031
14034
|
setTimeout(() => {
|