Hi,
I need to add attribute
i acheived the same for tables by modifying fck_table.html. But cannot seem to find where i can add the attribute for image.
Thanks in advance for help.
MAQ
I need to add attribute
class="contentimage"to every image that user inserts in the editor. how can i do that?
i acheived the same for tables by modifying fck_table.html. But cannot seem to find where i can add the attribute for image.
Thanks in advance for help.
MAQ

Same problem
Hello, is there an anser?
editor.on('insertElement',
editor.on('insertElement', function(event) { var element = event.data; if (element.getName() == 'img') { element.addClass('contentimage'); } });