Bogdan
Bogdan

Reputation: 1911

How can I change the title ckeditor sets for inline instances?

Right now it sets it to Rich text editor, element_id. Is there any way to change that?

Upvotes: 0

Views: 2064

Answers (2)

Nick Zinger
Nick Zinger

Reputation: 1174

In ckeditor.js search for the following string:

a.changeAttr("title",c)

And justs set it to an empty string if you want:

a.changeAttr("title",'');

Keep In mind, you'll lose this during an update, but this is the only way until they add it to their editable configurations. Only use this if you don't mind losing some a11y.

Upvotes: 3

Reinmar
Reinmar

Reputation: 22013

This title is set in CKEDITOR.editable. You can change it by:

But when you'll modify it, remember that this title is there to provide a11y.

Upvotes: 0

Related Questions