Greetings all!
I wanted to share this little plugin I made for CKEditor. It allows for the use of IFrames in the document. It's quite simple, but utilizes fakeobjects and dark magic to display the html code in source view, but a placeholder in WYSIWYG mode. (Yeah, I made those rad looking placeholder images).
Again, it was toosed together very quickly, so should you have any problems with it. Let me know, or better yet fix it yourself and let everone know here.
Installation:
It's standard installation:
1. Un-zip to your ckeditor/plugins directory.
2. Add the following line to the bottom of your config file (If you use PHP or other callers, change it in your respective language)
That's it. Let me know what you think and hope you find it useful!
I wanted to share this little plugin I made for CKEditor. It allows for the use of IFrames in the document. It's quite simple, but utilizes fakeobjects and dark magic to display the html code in source view, but a placeholder in WYSIWYG mode. (Yeah, I made those rad looking placeholder images).
Again, it was toosed together very quickly, so should you have any problems with it. Let me know, or better yet fix it yourself and let everone know here.
Installation:
It's standard installation:
1. Un-zip to your ckeditor/plugins directory.
2. Add the following line to the bottom of your config file (If you use PHP or other callers, change it in your respective language)
config.extraPlugins += (config.extraPlugins ? ',iframe' : 'iframe');3. Add the button to your toolbar (I.E. config.toolbar). Hopefully you know how to do this. The button is called 'Iframe'
That's it. Let me know what you think and hope you find it useful!
Re: IFrame Plugin for CKEditor
You should add the plugin to this ticket and mark it as HasPatch
http://dev.ckeditor.com/ticket/4648
Re: IFrame Plugin for CKEditor
Re: IFrame Plugin for CKEditor
Some ideas?
Re: IFrame Plugin for CKEditor
Re: IFrame Plugin for CKEditor
Thank you for response!