Skip to content

Instantly share code, notes, and snippets.

@tpatel
Created May 9, 2017 09:10
Show Gist options
  • Save tpatel/04dea819f3a9a5ffaa53c01ae91c07bd to your computer and use it in GitHub Desktop.
Save tpatel/04dea819f3a9a5ffaa53c01ae91c07bd to your computer and use it in GitHub Desktop.
var elems = [].slice.call(document.querySelectorAll('.js-issue.ghx-selected'));
var total = 0;
var count = 0;
elems.forEach(function(elem) {
var points = parseFloat(elem.querySelector('*[title="Story Points"]').innerText);
total += points;
count++;
})
alert(total + ' points\n' + count + ' tickets');