diff options
| author | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2023-03-24 10:05:49 +0100 |
|---|---|---|
| committer | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2023-03-24 10:07:04 +0100 |
| commit | 0115b09bd8c78818209024cb04305d39289dcda7 (patch) | |
| tree | 4c5450beb95cccdbdd8a0710de7af25252ce8b80 /resources | |
| parent | 90285205de91428b1cbf003e778fa7a49a41aea3 (diff) | |
Prevent data from being lost, refs #2418.
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/assets/javascripts/lib/wysiwyg.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/assets/javascripts/lib/wysiwyg.js b/resources/assets/javascripts/lib/wysiwyg.js index 3704e8b..a1972fc 100644 --- a/resources/assets/javascripts/lib/wysiwyg.js +++ b/resources/assets/javascripts/lib/wysiwyg.js @@ -118,7 +118,8 @@ function replaceTextarea(textarea) { } return STUDIP.loadChunk('wysiwyg') - .then(loadMathJax) + // TODO: Zuerst muss #2481 behoben werden, bevor diese Zeile wieder funktionieren kann. + // .then(loadMathJax) .then(createEditor) .then(setEditorInstance) .then(enhanceEditor) |
