Skip to content

Instantly share code, notes, and snippets.

@mrbusche
Created August 23, 2017 02:09
Show Gist options
  • Save mrbusche/524eda3c26f71986475e0c958fdb5222 to your computer and use it in GitHub Desktop.
Save mrbusche/524eda3c26f71986475e0c958fdb5222 to your computer and use it in GitHub Desktop.
jira hide assigned tickets
//load in jquery
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
//hide assigned tickets
$('.ghx-avatar').each(function() {
var str = $(this)[0].outerHTML;
if (str.indexOf("Assignee:") >= 0) {
$(this).parent().hide();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment