Skip to content

Instantly share code, notes, and snippets.

@rymndhng
rymndhng / bookmarklet.js
Last active April 27, 2021 22:38
JIRA Issue Bookmarklet
javascript:(function() {
"support old jira first";
const descriptionElement = document.getElementById("description");
if (descriptionElement) {
descriptionElement.value = "*What*:\n\n*Why*:\n\n*What does success look like?*\n\n*Testing Notes*\n\n*Technical Notes/Hints*\n\n";
return;
}
"support new jira issue view";