From c116ad2be71ebdd257629657b062248edcc894e3 Mon Sep 17 00:00:00 2001 From: danpros Date: Thu, 4 Mar 2021 12:56:21 +0700 Subject: [PATCH] Pending the striketrough because PHP markdown not support it yet --- system/admin/editor/js/Markdown.Editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/admin/editor/js/Markdown.Editor.js b/system/admin/editor/js/Markdown.Editor.js index 6e8faf1..832ab3e 100644 --- a/system/admin/editor/js/Markdown.Editor.js +++ b/system/admin/editor/js/Markdown.Editor.js @@ -1483,7 +1483,7 @@ buttons.bold = makeButton("wmd-bold-button", getString("bold"), "fa fa-bold", bindCommand("doBold")); buttons.italic = makeButton("wmd-italic-button", getString("italic"), "fa fa-italic", bindCommand("doItalic")); buttons.heading = makeButton("wmd-heading-button", getString("heading"), "fa fa-header", bindCommand("doHeading")); - buttons.strikethrough = makeButton("wmd-strikethrough-button", getString("strikethrough"), "fa fa-strikethrough", bindCommand("doStrikethrough")); + //buttons.strikethrough = makeButton("wmd-strikethrough-button", getString("strikethrough"), "fa fa-strikethrough", bindCommand("doStrikethrough")); //makeSpacer(1); buttons.olist = makeButton("wmd-olist-button", getString("olist"), "fa fa-list-ol", bindCommand(function (chunk, postProcessing) { this.doList(chunk, postProcessing, true);