Created
November 29, 2016 10:22
-
-
Save mehdichaouch/af12f7788e132ff1ffcec4090aa160ee to your computer and use it in GitHub Desktop.
Bookmarklet to select Jira issues
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
(function(){var doc=document;var text=doc.getElementsByClassName('issue-table-container')[0];if(doc.body.createTextRange){/* ms */var range=doc.body.createTextRange();range.moveToElementText(text);range.select();}else if(window.getSelection){/* moz, opera, webkit */var selection=window.getSelection();var range=doc.createRange();range.selectNodeContents(text);selection.removeAllRanges();selection.addRange(range);}})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment