Skip to content

Commit e1c8692

Browse files
committed
Added missing key to MARTOR_ENABLE_CONFIGS.
The Problem The demo application was crashing because the 'spellcheck' key was missing. The Solution Add the missing key to the MARTOR_ENABLE_CONFIGS dictionary.
1 parent 249a676 commit e1c8692

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

martor_demo/martor_demo/settings.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
2727
DEBUG = True
2828
ALLOWED_HOSTS = ['*']
2929
MARTOR_ENABLE_CONFIGS = {
30-
'imgur': 'true', # to enable/disable imgur/custom uploader.
31-
'mention': 'true', # to enable/disable mention
32-
'jquery': 'true', # to include/revoke jquery (require for admin default django)
33-
'living': 'false' # to enable/disable live updates in preview
30+
'imgur': 'true', # to enable/disable imgur/custom uploader.
31+
'mention': 'true', # to enable/disable mention
32+
'jquery': 'true', # to include/revoke jquery (require for admin default django)
33+
'living': 'false', # to enable/disable live updates in preview
34+
'spellcheck': 'true', # to enable/disable spellcheck in the editor.
3435
}
3536

3637
# Application definition

0 commit comments

Comments
 (0)