mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 00:15:35 +02:00
fix(ckeditor): admonitions overshadowing floating toolbar
This commit is contained in:
@@ -38,18 +38,6 @@ export default class AdmonitionToolbar extends Plugin {
|
||||
return null;
|
||||
}
|
||||
});
|
||||
|
||||
// Hide balloon toolbar when in an admonition
|
||||
if (editor.plugins.has("BalloonToolbar")) {
|
||||
editor.listenTo(editor.plugins.get("BalloonToolbar"), "show", (evt) => {
|
||||
const firstPosition = editor.model.document.selection.getFirstPosition();
|
||||
const isInAdmonition = firstPosition?.findAncestor("aside");
|
||||
|
||||
if (isInAdmonition) {
|
||||
evt.stop(); // Prevent the balloon toolbar from showing
|
||||
}
|
||||
}, { priority: "high" });
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user