Created
May 30, 2012 20:32
-
-
Save andyvanee/2838754 to your computer and use it in GitHub Desktop.
Custom Ckeditor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // The field name is links | |
| Event.observe(window, "load", function() { | |
| CKEDITOR.replace( 'links', {toolbar : [['Source', 'Link', 'Unlink']], width: 400, height: 100}); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function postGenerateForm(&$form){ | |
| $form->addElement('html', "<script src='/javascripts/link_editor.js'></script>"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment