Changeset 5165
- Timestamp:
- 02/21/10 00:15:53 (3 years ago)
- File:
-
- 1 edited
-
CKEditor/trunk/_samples/ajax.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_samples/ajax.html
r5144 r5165 29 29 // Create a new editor inside the <div id="editor"> 30 30 editor = CKEDITOR.appendTo( 'editor' ); 31 editor.setData( html , null, true);31 editor.setData( html ); 32 32 33 33 // This sample may break here if the ckeditor_basic.js is used. In such case, the following code should be used instead: 34 34 /* 35 35 if ( editor.setData ) 36 editor.setData( html , null, true);36 editor.setData( html ); 37 37 else 38 38 { 39 39 CKEDITOR.on( 'loaded', function() 40 40 { 41 editor.setData( html , null, true);41 editor.setData( html ); 42 42 }); 43 43 }
Note: See TracChangeset
for help on using the changeset viewer.
