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