fix[Tinymce]: fixed fullScreen bug #1400
This commit is contained in:
parent
b8b787733c
commit
49f1e5e6dc
|
@ -157,8 +157,13 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
destroyTinymce() {
|
destroyTinymce() {
|
||||||
if (window.tinymce.get(this.tinymceId)) {
|
const tinymce = window.tinymce.get(this.tinymceId)
|
||||||
window.tinymce.get(this.tinymceId).destroy()
|
if (this.fullscreen) {
|
||||||
|
tinymce.execCommand('mceFullScreen')
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tinymce) {
|
||||||
|
tinymce.destroy()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
setContent(value) {
|
setContent(value) {
|
||||||
|
|
Loading…
Reference in New Issue