-
-
Save tylerw/75a86f69076e731a18f602bc1e89a6db to your computer and use it in GitHub Desktop.
Toggle Jira ticket right panel bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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