You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to have the browser default spellcheck accessible when the user clicks on a item that allows spellcheck (IE a textarea).
I wrote some code to accomplish this:
export function hasSpellCheck(event) {
const target = event.target;
if (!target.spellcheck) {
return false;
} else {
return true;
}
}
And the code to disable the context menu
editor.on('showcontextmenu', ({e,node}) => {
if (hasSpellCheck(e)) {
console.log("has misspelled word, skipping context");
return false;
}
return !e.node || !editor.components.get(e.node.name).data.noContextMenu;
});
I confirmed that this disables the context menu correctly. however, if this menu is disabled, the browser default behavior (showing a menu that includes spellcheck) does not show up. I would think if this menu is disabled, the default behavior would come back, but I may just be missing something.
The text was updated successfully, but these errors were encountered:
Indeed, showcontextmenu has nothing to do with preventing the default context menu. If you need to "prioritize" your textarea's context menu, you can add "stopPropagation" to its contextmenu event.
I would like to have the browser default spellcheck accessible when the user clicks on a item that allows spellcheck (IE a
textarea
).I wrote some code to accomplish this:
And the code to disable the context menu
I confirmed that this disables the context menu correctly. however, if this menu is disabled, the browser default behavior (showing a menu that includes spellcheck) does not show up. I would think if this menu is disabled, the default behavior would come back, but I may just be missing something.
The text was updated successfully, but these errors were encountered: