From 775dcdadf13841330d4af66038f8bf8700c8103d Mon Sep 17 00:00:00 2001
From: chris <kokosias@yahoo.gr>
Date: Thu, 16 Feb 2017 14:43:35 +0200
Subject: [PATCH] enable spellchecker

---
 app/components/SimpleEditor/ContainerEditor.js | 3 ++-
 app/components/SimpleEditor/Editor.js          | 1 +
 app/components/SimpleEditor/config.js          | 4 +++-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/app/components/SimpleEditor/ContainerEditor.js b/app/components/SimpleEditor/ContainerEditor.js
index 9932954..f3f7c6d 100644
--- a/app/components/SimpleEditor/ContainerEditor.js
+++ b/app/components/SimpleEditor/ContainerEditor.js
@@ -10,7 +10,8 @@ import {
 class ContainerEditor extends SubstanceContainerEditor {
   render ($$) {
     let el = super.render($$)
-
+    // native spellcheck
+    el.attr('spellcheck', this.props.spellcheck === 'native')
     // var doc = this.getDocument()
     // var containerId = this.getContainerId()
     // var containerNode = doc.get(containerId)
diff --git a/app/components/SimpleEditor/Editor.js b/app/components/SimpleEditor/Editor.js
index c928a5b..a4dd0d0 100644
--- a/app/components/SimpleEditor/Editor.js
+++ b/app/components/SimpleEditor/Editor.js
@@ -136,6 +136,7 @@ class Editor extends ProseEditor {
       editorSession: this.editorSession,
       commands: configurator.getSurfaceCommandNames(),
       containerId: 'body',
+      spellcheck: 'native',
       textTypes: configurator.getTextTypes(),
       trackChanges: this.props.trackChanges,
       updateTrackChangesStatus: this.props.updateTrackChangesStatus
diff --git a/app/components/SimpleEditor/config.js b/app/components/SimpleEditor/config.js
index 63daa97..e7c1bc9 100644
--- a/app/components/SimpleEditor/config.js
+++ b/app/components/SimpleEditor/config.js
@@ -12,7 +12,8 @@ import {
   StrongPackage,
   SubscriptPackage,
   SuperscriptPackage,
-  SwitchTextTypePackage
+  SwitchTextTypePackage,
+  SpellCheckPackage
 } from 'substance'
 
 // My Elements
@@ -54,6 +55,7 @@ let config = {
     config.import(PersistencePackage)
 
     config.import(LinkPackage)
+    config.import(SpellCheckPackage)
     // config.import(CodeblockPackage)
     // // config.import(DialoguePackage)
     // config.import(ExtractPackage)
-- 
GitLab