From 995068830ccff105984e6ab587ba17ad42cdee5c Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Thu, 15 Dec 2022 23:04:30 +0900 Subject: [PATCH] Fix #2037 missing "strike" button in CKEditor simple toolbar --- modules/editor/skins/ckeditor/editor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/skins/ckeditor/editor.html b/modules/editor/skins/ckeditor/editor.html index b6e6b09ce..991ae9c24 100644 --- a/modules/editor/skins/ckeditor/editor.html +++ b/modules/editor/skins/ckeditor/editor.html @@ -186,7 +186,7 @@ var auto_saved_msg = "{$lang->msg_auto_saved}"; // Define the simple toolbar. settings.ckeconfig.toolbar = [ - { name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'TextColor', 'BGColor' ] }, + { name: 'styles', items: [ 'Font', 'FontSize', '-', 'Bold', 'Italic', 'Underline', 'Strike', 'TextColor', 'BGColor' ] }, { name: 'paragraph', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ] }, { name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste' ] }, { name: 'insert', items: [ 'Link', 'Image', 'Table' ] },