From c951ff256bca293b7cd37ca22c2200477f17cf6e Mon Sep 17 00:00:00 2001 From: john <johnbarlas39@gmail.com> Date: Fri, 5 May 2017 22:25:08 +0300 Subject: [PATCH] remove bold from editor --- app/components/SimpleEditor/config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/SimpleEditor/config.js b/app/components/SimpleEditor/config.js index 2c092e1..4d28b81 100644 --- a/app/components/SimpleEditor/config.js +++ b/app/components/SimpleEditor/config.js @@ -10,7 +10,7 @@ import { PersistencePackage, ProseArticle, SpellCheckPackage, - StrongPackage, + // StrongPackage, SubscriptPackage, SuperscriptPackage } from 'substance' @@ -25,7 +25,7 @@ import NotePackage from './elements/note/NotePackage' import SourceNotePackage from './elements/source_note/SourceNotePackage' import TrackChangePackage from './elements/track_change/TrackChangePackage' -let config = { +const config = { name: 'simple-editor', configure: (config, options) => { config.defineSchema({ @@ -41,7 +41,7 @@ let config = { config.import(ParagraphPackage) config.import(HeadingPackage) config.import(EmphasisPackage) - config.import(StrongPackage) + // config.import(StrongPackage) config.import(SubscriptPackage) config.import(SuperscriptPackage) config.import(CodePackage) -- GitLab