X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=samples%2Fplugins%2Fwysiwygarea%2Ffullpage.html;h=174a25f35534dc713f0277879ea6be8763b38418;hp=c0da0e9f472bf1a905103c1701b1c9be8f34669a;hb=1f91409c05f689832bd6dfbbb5161b6d18c3b50c;hpb=860af3c4bde9866c53d5123c57e3dc6166e0fe1e diff --git a/samples/plugins/wysiwygarea/fullpage.html b/samples/plugins/wysiwygarea/fullpage.html index c0da0e9..174a25f 100644 --- a/samples/plugins/wysiwygarea/fullpage.html +++ b/samples/plugins/wysiwygarea/fullpage.html @@ -1,12 +1,12 @@ - Full Page Editing — CKEditor Sample + Full Page Editing — CKEditor Sample @@ -29,13 +29,18 @@ For licensing, see LICENSE.html or http://ckeditor.com/license

 CKEDITOR.replace( 'textarea_id', {
-	fullPage: true
+	fullPage: true,
+	allowedContent: true
 });
 

Note that textarea_id in the code above is the id attribute of the <textarea> element to be replaced.

+

+ The allowedContent in the code above is set to true to disable content filtering. + Setting this option is not obligatory, but in full page mode there is a strong chance that one may want be able to freely enter any HTML content in source mode without any limitations. +