mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
MDL-77896 editor_tiny: approximate height for non-visible editors.
When an editor is renderer initially invisible to the browser, e.g. the forum "Add discussion" form, it has a `clientHeight` value of zero. We can approximate an alternative value based on the number of rows in the textarea. Co-authored-by: Andrew Nicols <andrew@nicols.co.uk>
This commit is contained in:
parent
38c35247e9
commit
c28cd3215b
2
lib/editor/tiny/amd/build/editor.min.js
vendored
2
lib/editor/tiny/amd/build/editor.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -213,8 +213,10 @@ const getStandardConfig = (target, tinyMCE, options, plugins) => {
|
||||
// Set the minimum height to the smallest height that we can fit the Menu bar, Tool bar, Status bar and the text area.
|
||||
// eslint-disable-next-line camelcase
|
||||
min_height: 175,
|
||||
// Base the height on the size of the text area.
|
||||
height: target.clientHeight,
|
||||
|
||||
// Base the height on the size of the text area. Account for lack of height value when the editor is initially hidden,
|
||||
// in which case use CSS calc() to approximate the same based on number of rows and target line height.
|
||||
height: target.clientHeight || `calc(${target.rows} * ${window.getComputedStyle(target).lineHeight || '22px'})`,
|
||||
|
||||
// Set the language.
|
||||
// https://www.tiny.cloud/docs/tinymce/6/ui-localization/#language
|
||||
|
Loading…
x
Reference in New Issue
Block a user