Skip to content

Instantly share code, notes, and snippets.

@wportercaprx
Last active October 5, 2023 15:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wportercaprx/b48233464542c78fce0cb7643a751678 to your computer and use it in GitHub Desktop.
Save wportercaprx/b48233464542c78fce0cb7643a751678 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");
})();
@wportercaprx
Copy link
Author

Add a bookmark, copy and paste the above code as the URL, profit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment