Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created December 22, 2023 13:00
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/d10434aab246f3995e29dbf6899a370a to your computer and use it in GitHub Desktop.
Save bjoerntx/d10434aab246f3995e29dbf6899a370a to your computer and use it in GitHub Desktop.
// remove 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, remove it
if (index2 > -1) {
e.items[index].items.splice(index2, 1);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment