jackyhuynh0407

Results 2 comments of jackyhuynh0407

I found the solution: In index.js line 41: ``` js let rteToolbar = editor.RichTextEditor.getToolbarEl(); [].forEach.call(rteToolbar.children, (child) => { child.style.display = 'none'; }); ``` change to: ``` js let rteToolbar =...

Yes I have other solution. But i forgot to update it. I'm not open PR yet ```js let rteToolbar = editor.RichTextEditor.getToolbarEl(); [].forEach.call(rteToolbar.children, (child) => { if(child.id == `cke_${el.id}`) child.remove() else...