Skip to content

Instantly share code, notes, and snippets.

@MD4
Last active May 23, 2019 08:52
Show Gist options
  • Save MD4/2285c365102d8c7ef85c8c105eda769e to your computer and use it in GitHub Desktop.
Save MD4/2285c365102d8c7ef85c8c105eda769e to your computer and use it in GitHub Desktop.
const countSelectedIssuePoints = () => $('.js-issue.ghx-selected .aui-badge.ghx-statistic-badge')
.map((_, b) => +$(b).text())
.get()
.reduce(
(a,b) => a + (b || 0),
0,
);
countSelectedIssuePoints(); // 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment