MarceloMadnezz
MarceloMadnezz

Reputation: 307

CKEDITOR - Disable in Line text editor

On CKEDITOR when I select a text, a small editor appears.

I Need to disable this inline editor.

CKEDITOR http://devsal.madnezz.com.br/v2/img/ckeditor.png

I have tried to change some stuff on CKEDITOR.editorConfig but, no success.

Thanks in advance.

Upvotes: 3

Views: 617

Answers (2)

Someone
Someone

Reputation: 19

config.removePlugins = 'floating-tools'; should be enough.

Upvotes: 1

MarceloMadnezz
MarceloMadnezz

Reputation: 307

I added the following information on the configuration and it worked.

config.removePlugins = 'floatingspace,panelbutton,panel,floatpanel,floating-tools,contextmenu,richcombo';

Upvotes: 2

Related Questions