Created
October 13, 2020 09:31
-
-
Save JadedEvan/0bdcfbe15d74cefce04cf2aa08c8997d to your computer and use it in GitHub Desktop.
Javascript snippet to add up the total of story points for a Jira issue search
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
var total=0;$('#issuetable .issuerow .customfield_10025').each(function(index){if(this.innerText != ''){total += parseInt(this.innerText)}});console.log(total); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment