Abijeet

Fixes #354, Adds the spellchecker option

Uses the browser_spellchecker option documented here - https://www.tinymce.com/docs/configure/spelling/#browser_spellcheck
...@@ -68,6 +68,7 @@ export default function() { ...@@ -68,6 +68,7 @@ export default function() {
68 window.baseUrl('/libs/material-design-iconic-font/css/material-design-iconic-font.min.css') 68 window.baseUrl('/libs/material-design-iconic-font/css/material-design-iconic-font.min.css')
69 ], 69 ],
70 body_class: 'page-content', 70 body_class: 'page-content',
71 + browser_spellcheck: true,
71 relative_urls: false, 72 relative_urls: false,
72 remove_script_host: false, 73 remove_script_host: false,
73 document_base_url: window.baseUrl('/'), 74 document_base_url: window.baseUrl('/'),
......