X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=samples%2Fplugins%2Fwysiwygarea%2Ffullpage.html;h=174a25f35534dc713f0277879ea6be8763b38418;hp=66a3acd143ebdedeb8f3a49a318a2184544ef368;hb=1f91409c05f689832bd6dfbbb5161b6d18c3b50c;hpb=4625dba05116026713fee9008dd93306be0d1553 diff --git a/samples/plugins/wysiwygarea/fullpage.html b/samples/plugins/wysiwygarea/fullpage.html index 66a3acd..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. +