Skip to content

Instantly share code, notes, and snippets.

@tylerw
Forked from wportercaprx/toggle_jira.js
Last active October 3, 2023 17:28
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 tylerw/75a86f69076e731a18f602bc1e89a6db to your computer and use it in GitHub Desktop.
Save tylerw/75a86f69076e731a18f602bc1e89a6db to your computer and use it in GitHub Desktop.
Toggle Jira ticket right panel bookmarklet
javascript: (function () {
panel = document.querySelector(
"div[data-testid*='container-right']"
);
if (panel.style.display == "none")
panel.style.removeProperty("display");
else
panel.style.setProperty("display", "none");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment