Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-webui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-webui
Merge requests
!57
MAINT: replace promises by await
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
MAINT: replace promises by await
f-review-async
into
f-wysiwyg
Overview
0
Commits
2
Pipelines
2
Changes
1
Merged
Henrik tom Wörden
requested to merge
f-review-async
into
f-wysiwyg
3 years ago
Overview
0
Commits
2
Pipelines
2
Changes
1
0
0
Merge request reports
Viewing commit
f6e7600f
Prev
Next
Show latest version
1 file
+
1
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
f6e7600f
MAINT: const variable"
· f6e7600f
Henrik tom Wörden
authored
3 years ago
src/core/js/ext_editmode_wysiwyg_text.js
+
1
−
3
View file @ f6e7600f
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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