From 6fcfb7c04d32e1c8b26a312295bf7ac3ec2d2ad7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 13 Jul 2018 19:06:45 +0200 Subject: Fixed many permissions and began admin interface --- .../ckeditor/samples/old/wysiwygarea/fullpage.html | 80 ++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 public/bower_components/ckeditor/samples/old/wysiwygarea/fullpage.html (limited to 'public/bower_components/ckeditor/samples/old/wysiwygarea/fullpage.html') diff --git a/public/bower_components/ckeditor/samples/old/wysiwygarea/fullpage.html b/public/bower_components/ckeditor/samples/old/wysiwygarea/fullpage.html new file mode 100644 index 0000000..e0790d9 --- /dev/null +++ b/public/bower_components/ckeditor/samples/old/wysiwygarea/fullpage.html @@ -0,0 +1,80 @@ + + + +
+ +
+ This sample shows how to configure CKEditor to edit entire HTML pages, from the
+ <html>
tag to the </html>
tag.
+
+ The CKEditor instance below is inserted with a JavaScript call using the following code: +
++CKEDITOR.replace( 'textarea_id', { + 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.
+