Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created December 22, 2023 13:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/91f540ff9f960d24e85746469bdeb58f to your computer and use it in GitHub Desktop.
Save bjoerntx/91f540ff9f960d24e85746469bdeb58f to your computer and use it in GitHub Desktop.
// disable the "Footnote" menu item
TXTextControl.addEventListener("contextMenuOpening", (e) => {
// check if e.items contains an entry where property text == "Insert"
const index = e.items.findIndex((i) => i.text === "Insert");
// check if e.items[index].items contains an entry where property text == "Footnote"
const index2 = e.items[index].items.findIndex((i) => i.text === "Footnote");
// if so, disable it
e.items[index].items[index2].isEnabled = false;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment