MDL-77895 editor_tiny: standardize quickbar selection toolbar.

Ensure the same heading tags are available as those defined in the
editor block formats configuration (c51b7e2c).

Co-authored-by: Andrew Nicols <andrew@nicols.co.uk>
This commit is contained in:
Paul Holden 2023-04-12 14:50:59 +01:00
parent 0e08d0df60
commit adb6d5468e
No known key found for this signature in database
GPG Key ID: A81A96D6045F6164
3 changed files with 5 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -360,6 +360,9 @@ const getEditorConfiguration = (target, tinyMCE, options, pluginValues) => {
.replaceAll(/\| *\|/g, '|');
}
// eslint-disable-next-line camelcase
instanceConfig.quickbars_selection_toolbar = instanceConfig.quickbars_selection_toolbar.replace('h2 h3', 'h3 h4 h5 h6');
// Next we call the `configure` function for any plugin which defines it.
// We pass the current instanceConfig in here, to allow them to make certain changes to the global configuration.
// For example, to add themselves to any menu, toolbar, and so on.