Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default behavior supressed when using context menu plugin, even if it is disabled #72

Closed
dbriscoe511 opened this issue Apr 25, 2023 · 3 comments

Comments

@dbriscoe511
Copy link

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.

@Ni55aN
Copy link
Member

Ni55aN commented Apr 25, 2023

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.

@dbriscoe511
Copy link
Author

Oh yep, you are totally right. Thanks for your help

@Ni55aN
Copy link
Member

Ni55aN commented Apr 26, 2023

@dbriscoe511 you have not accepted your invitation yet 🙂

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants