Last active
August 29, 2015 14:20
-
-
Save sampart/c43b5c35be5610dabdee to your computer and use it in GitHub Desktop.
Bookmarklet for copying information about selected JIRA task
This file contains 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
selectedItem = jQuery('div.ghx-selected');itemId = selectedItem.find('a').attr('href').replace('/browse/', '');itemText = selectedItem.find('.ghx-inner').text();harvestText = itemId + ': ' + itemText;window.prompt('Put this in Harvest', harvestText); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment