I am customizing the CKEditor tool bar. I want to add IFrame, how to do this?
My code I have tried:
CKEDITOR.replace( 'editor1',{
toolbar :
[
['SpellChecker','Bold', 'Italic','Underline','Subscript','Superscript'],
['NumberedList','BulletedList','-','Blockquote','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link', 'Unlink','Anchor'] ,['Image','Flash','Table','HorizontalRule','SpecialChar','IFrame'],
'/',
['Styles','Format','Font','FontSize' ],
['TextColor','BGColor'],
['Maximize']
]
});
I am using ckeditor in a project of my own, my config file looks like this. I reference the IFrame plugin with a lowercase ‘f’.