Änderungen von Dokument EditSheet
Zuletzt geändert von teamwire004 am 2025/07/01 06:50
Von Version 7.1
bearbeitet von teamwire005
am 2025/05/06 08:20
am 2025/05/06 08:20
Änderungskommentar:
Install extension [org.xwiki.platform:xwiki-platform-ckeditor-ui/16.10.6]
Auf Version 8.1
bearbeitet von teamwire004
am 2025/07/01 06:50
am 2025/07/01 06:50
Änderungskommentar:
Install extension [org.xwiki.platform:xwiki-platform-ckeditor-ui/16.10.9]
Zusammenfassung
-
Seiteneigenschaften (1 geändert, 0 hinzugefügt, 0 gelöscht)
-
Objekte (2 geändert, 0 hinzugefügt, 0 gelöscht)
Details
- Seiteneigenschaften
-
- Dokument-Autor
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.teamwire00 51 +XWiki.teamwire004
- XWiki.JavaScriptExtension[2]
-
- Code
-
... ... @@ -10,7 +10,9 @@ 10 10 container.find('.ckeditor-textarea').each(function() { 11 11 // Wrap in try/catch so that a failure to load one editor doesn't affect the other editors. 12 12 try { 13 - createEditor(ckeditor, this); 13 + createEditor(ckeditor, this).then(() => { 14 + this.classList.remove('loading'); 15 + }); 14 14 } catch(e) { 15 15 console.log(e); 16 16 }
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -12,6 +12,13 @@ 12 12 resize: none; 13 13 } 14 14 15 +/* Hide the form action bar while the editor is loading in order to avoid UI flickering (because the editor may enhance 16 + or replace the form action bar). */ 17 +main > div:has(.ckeditor-textarea.loading) ~ .bottom-editor, 18 +#xwikicontent.loading ~ form#inplace-editing { 19 + visibility: hidden; 20 +} 21 + 15 15 /* Show the modal above the CKEditor dialogs */ 16 16 body > .modal-backdrop { 17 17 z-index: 10040;