diff --git a/src/components/plugin/SectionHtml.vue b/src/components/plugin/SectionHtml.vue
index 71fce10..7e6763b 100644
--- a/src/components/plugin/SectionHtml.vue
+++ b/src/components/plugin/SectionHtml.vue
@@ -40,6 +40,7 @@ export default {
this.name = (this.value && this.value.name) ? this.value.name : this.name;
this.text = (this.value && this.value.text) ? this.value.text : this.text;
if (this.value.open) this.modalBox = true;
+ console.log('mounted html');
this.$emit('input',this.value);
},
data: function () {
diff --git a/src/components/plugin/SectionText.vue b/src/components/plugin/SectionText.vue
index e0959c8..8e592d1 100644
--- a/src/components/plugin/SectionText.vue
+++ b/src/components/plugin/SectionText.vue
@@ -77,7 +77,7 @@ export default {
this.h_type = (this.value && this.value.h_type) ? this.value.h_type : this.h_type;
this.align = (this.value && this.value.align) ? this.value.align : this.align;
if (this.value.open) this.modalBox = true;
- console.log('pagebuilder', this.$pagebuilder);
+ console.log('mounted text');
this.$emit('input',this.value);
},
diff --git a/src/components/plugin/SectionTextarea.vue b/src/components/plugin/SectionTextarea.vue
index 8414b96..2e1b626 100644
--- a/src/components/plugin/SectionTextarea.vue
+++ b/src/components/plugin/SectionTextarea.vue
@@ -43,6 +43,7 @@ export default {
this.name = (this.value && this.value.name) ? this.value.name : this.name;
this.text = (this.value && this.value.text) ? this.value.text : this.text;
if (this.value.open) this.modalBox = true;
+ console.log('mounted textarea');
this.$emit('input',this.value);
},