README.md revision 7508612ad4103428ddecbffd814a874484d576f0
204N/ARich Text Editor
204N/A================
204N/A
204N/AThe Rich Text Editor is a UI control that allows for the rich formatting
204N/Aof text content, including common structural treatments like lists,
204N/Aformatting treatments like bold and italic text.
204N/A
204N/AThe current release of the Rich Text Editor for YUI 3 is the base utility
204N/Alayers that provide a foundation on which you can create an Editor.
204N/A*This version of Editor does not contain a GUI of any kind.*
204N/A
204N/A
204N/A YUI().use('editor-base', function(Y) {
204N/A
204N/A var editor = new Y.EditorBase({
204N/A content: '<strong>This is <em>a test</em></strong> <strong>This is <em>a test</em></strong> '
204N/A });
204N/A
204N/A //Add the BiDi plugin
204N/A editor.plug(Y.Plugin.EditorBidi);
204N/A
204N/A //Focusing the Editor when the frame is ready..
204N/A editor.on('frame:ready', function() {
204N/A this.focus();
204N/A });
204N/A
204N/A //Rendering the Editor.
204N/A editor.render('#editor');
204N/A
204N/A });
204N/A
204N/A
204N/A