Skip to content

Instantly share code, notes, and snippets.

View wportercaprx's full-sized avatar

William Porter aka Bill wportercaprx

View GitHub Profile
@wportercaprx
wportercaprx / toggle_jira.js
Last active October 5, 2023 15:25
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");
})();