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