Reputation: 1911
Right now it sets it to Rich text editor, element_id. Is there any way to change that?
Upvotes: 0
Views: 2064
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
Reputation: 22013
This title is set in CKEDITOR.editable. You can change it by:
lang/<your lang>.js
(e.g. https://github.com/ckeditor/ckeditor-dev/blob/master/lang/en-gb.js#L30)But when you'll modify it, remember that this title is there to provide a11y.
Upvotes: 0