OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
sendy
/
js
/
ckeditor
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/27/2024 05:22:39 AM
rwxr-xr-x
📄
CHANGES.md
268.05 KB
11/27/2024 05:22:27 AM
rw-r--r--
📄
LICENSE.md
75.88 KB
11/27/2024 05:22:28 AM
rw-r--r--
📄
README.md
1.32 KB
11/27/2024 05:22:29 AM
rw-r--r--
📄
build-config.js
2.5 KB
11/27/2024 05:22:27 AM
rw-r--r--
📄
ckeditor.js
638.06 KB
11/27/2024 05:22:28 AM
rw-r--r--
📄
config.js
2.41 KB
11/27/2024 05:22:27 AM
rw-r--r--
📄
contents.css
3.02 KB
11/27/2024 05:22:28 AM
rw-r--r--
📁
lang
-
11/27/2024 05:22:53 AM
rwxr-xr-x
📁
plugins
-
11/27/2024 05:25:15 AM
rwxr-xr-x
📁
skins
-
11/27/2024 05:23:32 AM
rwxr-xr-x
📄
styles.js
5.45 KB
11/27/2024 05:22:29 AM
rw-r--r--
📁
vendor
-
11/27/2024 05:22:55 AM
rwxr-xr-x
Editing: config.js
Close
/** * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; config.font_names = 'Helvetica Neue;Helvetica;Arial;Verdana;Georgia;Times New Roman;Monospace;Comic Sans MS;Courier New;Tahoma'; config.toolbar = [ { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source', '-', 'Save', 'Preview' ] }, { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar' ] }, { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, '/', { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] }, { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] }, { name: 'colors', items: [ 'TextColor', 'BGColor' ] }, { name: 'tools', items: [ 'Maximize'] }, { name: 'others', items: [ '-' ] } ]; // The toolbar groups arrangement, optimized for two toolbar rows. config.toolbarGroups = [ { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, { name: 'insert', groups: [ 'insert' ] }, { name: 'links', groups: [ 'links' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] }, { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, { name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] }, { name: 'forms', groups: [ 'forms' ] }, '/', { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, { name: 'styles', groups: [ 'styles' ] }, { name: 'colors', groups: [ 'colors' ] }, { name: 'tools', groups: [ 'tools' ] }, { name: 'others', groups: [ 'others' ] }, { name: 'about', groups: [ 'about' ] } ]; config.removeButtons = 'Underline,Subscript,Superscript'; // Set the most common block elements. config.format_tags = 'p;h1;h2;h3;pre'; // Simplify the dialog windows. config.removeDialogTabs = 'image:advanced;link:advanced'; config.filebrowserUploadMethod = 'form'; };