angular-froala-wysiwyg icon indicating copy to clipboard operation
angular-froala-wysiwyg copied to clipboard

How to remove second-toolbar "Powered by froala" without css

Open irinelpascu opened this issue 5 years ago • 6 comments

The Froala v3 comes with a second-toolbar which contains the Powered by Froala anchor. Is there a way to remove it without css?

irinelpascu avatar Jun 26 '19 07:06 irinelpascu

see the docs:

new FroalaEditor('.selector', {
  attribution: false
});

roymilder avatar Jun 26 '19 11:06 roymilder

thank you

irinelpascu avatar Jun 26 '19 12:06 irinelpascu

This leaves the actual toolbar laying around collapsed with a slight border. It would be better if the whole thing got hidden?

brendon avatar Feb 22 '20 06:02 brendon

This leaves the actual toolbar laying around collapsed with a slight border. It would be better if the whole thing got hidden?

I agree. I updated to the latest version and see this toolbar border as well

irinelpascu avatar Mar 23 '20 08:03 irinelpascu

where is should i code?

cemot avatar Apr 02 '20 02:04 cemot

for those who stumbled on this issue on your editor's options add this:

  editorOptions: Object = {
    attribution: false,
    ...
  }

loonix avatar Feb 28 '23 08:02 loonix