-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
See the core issue: backdrop/backdrop-issues#6904
I can only see one problematic line:
| const dropdownView = CKEditor5.ui.createDropdown(locale); |
The rest might be just fine. Didn't test anything, just looked at the code.
Suggestion (roughly and untested):
let dropdownView;
if (typeof CKEditor5.ui.createDropdown === 'function') {
dropdownView = CKEditor5.ui.createDropdown(locale);
}
else {
dropdownView = CKEditor5.createDropdown(locale);
}To explain: By checking the current location, you're compatible with CKE5 v44 and CKE5 v45.
Metadata
Metadata
Assignees
Labels
No labels