Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 767 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 767 Bytes

jira-selected-story-points

Displays the the combined story points of Jira issues that you have selected

Installation

Just create, or drag a new bookmark with the following code as the URL. javascript: alert("Selected story points: " + jQuery(".ghx-selected [title='Story Points']").map((i, s) => Number(s.innerText)).toArray().reduce((a,s) => a+s));

Usage

Go to your Jira's backlog or active sprint, and select one or more tickets. Press the bookmark, and you will see the following alert box: Selected story points

Dependencies

Your Jira instance has to have jQuery, and your browser should support ES6

Note

Tested on a newish version of Chrome and Safari, and some version of Jira. Your mileage might vary.