Created
June 23, 2019 14:09
-
-
Save petrleocompel/d93f44c2f2905a165ef8fa93c61c2bfa to your computer and use it in GitHub Desktop.
jira-filter-my-subtasks
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
for(var row of document.getElementById("issuetable").children.item(0).children) { | |
if(row.children.item(4).textContent.trim().indexOf("Compel Petr") === -1) { | |
row.classList.add("hidden") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment