Skip to content
Snippets Groups Projects
Commit 078075a1 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Turn off the admin rich text area until wagtail 2.1

parent 38a00df2
No related branches found
No related tags found
No related merge requests found
...@@ -274,14 +274,15 @@ WAGTAILIMAGES_FEATURE_DETECTION_ENABLED = False ...@@ -274,14 +274,15 @@ WAGTAILIMAGES_FEATURE_DETECTION_ENABLED = False
WAGTAILADMIN_RICH_TEXT_EDITORS = { WAGTAILADMIN_RICH_TEXT_EDITORS = {
'default': { 'default': {
'WIDGET': 'wagtail.admin.rich_text.DraftailRichTextArea', 'WIDGET': 'wagtail.admin.rich_text.DraftailRichTextArea',
'OPTIONS': { # fixed in wagtail 2.1: https://github.com/wagtail/wagtail/commit/09f8a4f38a95f2760f38ab2f142443df93b5d8c6
'features': [ # 'OPTIONS': {
'bold', 'italic', # 'features': [
'h3', 'h4', 'h5', # 'bold', 'italic',
'ol', 'ul', # 'h3', 'h4', 'h5',
'link' # 'ol', 'ul',
] # 'link'
} # ]
# }
}, },
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment