From 3a628945ade35f3ba351ba90e271608520753174 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 11 Oct 2023 11:39:16 -0400 Subject: Removed ckeditor --- app/assets/javascripts/ckeditor/config.js | 61 ------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 app/assets/javascripts/ckeditor/config.js (limited to 'app/assets/javascripts/ckeditor/config.js') diff --git a/app/assets/javascripts/ckeditor/config.js b/app/assets/javascripts/ckeditor/config.js deleted file mode 100644 index 7ff7731..0000000 --- a/app/assets/javascripts/ckeditor/config.js +++ /dev/null @@ -1,61 +0,0 @@ -/* -Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.editorConfig = function( config ) -{ - // Define changes to default configuration here. For example: - config.language = 'en'; - // config.uiColor = '#AADC6E'; - config.height = "512px"; - - config.extraPlugins = "lineutils,widgetselection,widget,image2"; - - /* Filebrowser routes */ - // The location of an external file browser, that should be launched when "Browse Server" button is pressed. - config.filebrowserBrowseUrl = "/ckeditor/attachment_files"; - - // The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Flash dialog. - config.filebrowserFlashBrowseUrl = "/ckeditor/attachment_files"; - - // The location of a script that handles file uploads in the Flash dialog. - config.filebrowserFlashUploadUrl = "/ckeditor/attachment_files"; - - // The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Link tab of Image dialog. - config.filebrowserImageBrowseLinkUrl = "/ckeditor/pictures"; - - // The location of an external file browser, that should be launched when "Browse Server" button is pressed in the Image dialog. - config.filebrowserImageBrowseUrl = "/ckeditor/pictures"; - - // The location of a script that handles file uploads in the Image dialog. - config.filebrowserImageUploadUrl = "/ckeditor/pictures?"; - - // The location of a script that handles file uploads. - config.filebrowserUploadUrl = "/ckeditor/attachment_files"; - - config.allowedContent = true; - - // Toolbar groups configuration. - config.toolbar = [ - { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source', 'Maximize' ] }, - { name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', '-', 'Undo', 'Redo' ] }, - { name: 'editing', groups: [ 'find' ], items: [ 'Find', 'Replace' ] }, - // { name: 'forms', items: [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] }, - { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] }, - { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule' ] }, - { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, - '/', - { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] }, - { name: 'colors', items: [ 'TextColor', 'BGColor' ] }, - { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] } - ]; - - config.toolbar_mini = [ - { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, - { name: 'styles', items: [ 'Font', 'FontSize' ] }, - { name: 'colors', items: [ 'TextColor', 'BGColor' ] }, - { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] }, - { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar' ] } - ]; -}; -- cgit 1.4.1