Skip to content

Commit

Permalink
Try fixing ckeditor component
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Sep 14, 2017
1 parent dc6bd30 commit 8434f5a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Modules/Core/Assets/js/components/CkEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@
},
watch: {
value (val) {
this.instance.setData(val, null, true);
//console.log(this.value, this.instance);
this.instance.setData(this.value)
// let html = this.instance.getData();
// if (val !== html) {
// }
}
},
mounted () {
Expand Down

0 comments on commit 8434f5a

Please sign in to comment.