X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=samples%2Fplugins%2Fwysiwygarea%2Ffullpage.html;h=a4196aca486096f65395ca2ec79045ff7155a213;hp=c0da0e9f472bf1a905103c1701b1c9be8f34669a;hb=9ff13aaba26bcf5e5315d53a58465507b3c44196;hpb=bbcc7027149eeec7493a43022d1de04081346667 diff --git a/samples/plugins/wysiwygarea/fullpage.html b/samples/plugins/wysiwygarea/fullpage.html index c0da0e9..a4196ac 100644 --- a/samples/plugins/wysiwygarea/fullpage.html +++ b/samples/plugins/wysiwygarea/fullpage.html @@ -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. +