我初始化我的tinyMCE编辑器,如下所示:
this.editor = tinymce.init({
...
target: anElementRef,
inline: true,
theme: 'modern',
menubar: false,
statusbar: false,
fixed_toolbar_container: anotherElementRef,
...
});
工具栏呈现在正确的位置,但我希望它占据其容器元素的全宽,如: {{3}}
任何想法如何实现?谢谢!