From 08ea980410f7029085ad9abca7b6e24037493fe7 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 14 Nov 2018 13:19:45 -0500 Subject: [PATCH] Fix missing comma in Draftail docs code --- CHANGELOG.txt | 3 ++- docs/advanced_topics/customisation/extending_draftail.rst | 2 +- docs/releases/2.4.rst | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 341a471c62..1574a9611c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -12,6 +12,7 @@ Changelog * Collection listings are now ordered by name (Seb Brown) * Added `file_hash` field to documents (Karl Hobley, Dan Braghis) * Added last login to the user overview (Noah B Johnson) + * Changed design of image editing page (Janneke Janssen, Ben Enright) * Fix: Query objects returned from `PageQuerySet.type_q` can now be merged with `|` (Brady Moe) * Fix: Add `rel="noopener noreferrer"` to target blank links (Anselm Bradford) * Fix: Additional fields on custom document models now show on the multiple document upload view (Robert Rollins, Sergey Fedoseev) @@ -20,7 +21,7 @@ Changelog * Fix: Allow nav menu to take up all available space instead of scrolling (Meteor0id) * Fix: Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey) * Fix: Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen) - * Changed design of image editing page (Janneke Janssen, Ben Enright) + * Fix: Missing comma in Draftail documentation (Alex Gleason) 2.3 LTS (23.10.2018) diff --git a/docs/advanced_topics/customisation/extending_draftail.rst b/docs/advanced_topics/customisation/extending_draftail.rst index f06578a2c8..1214ae445c 100644 --- a/docs/advanced_topics/customisation/extending_draftail.rst +++ b/docs/advanced_topics/customisation/extending_draftail.rst @@ -183,7 +183,7 @@ In order to achieve this, we start with registering the rich text feature like f features.register_editor_plugin( 'draftail', feature_name, draftail_features.EntityFeature( control, - js=['stock.js'] + js=['stock.js'], css={'all': ['stock.css']} ) ) diff --git a/docs/releases/2.4.rst b/docs/releases/2.4.rst index 7cd4904447..d48967c0a3 100644 --- a/docs/releases/2.4.rst +++ b/docs/releases/2.4.rst @@ -45,6 +45,7 @@ Bug fixes * Users without the edit permission no longer see "Edit" links in list of pages waiting for moderation (Justin Focus, Fedor Selitsky) * Redirects now return 404 when destination is unspecified or a page with no site (Hillary Jeffrey) * Refactor all breakpoint definitions, removing style overlaps (Janneke Janssen) + * Fix: Missing comma in Draftail documentation (Alex Gleason) Upgrade considerations