Skip to content
Snippets Groups Projects

MAINT: replace promises by await

Merged Henrik tom Wörden requested to merge f-review-async into f-wysiwyg
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
@@ -46,9 +46,7 @@ var ext_editmode_wysiwyg_text = function ($, logger, ClassicEditor, edit_mode, g
}
try{
let editor;
editor = await ClassicEditor
const editor = await ClassicEditor
.create(prop.querySelector('textarea'), {
// use all plugins since we built the editor dependency to
// contain only those we need.
Loading