This file contains hidden or 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
function doit() { | |
var taskboard = JSON.parse(document.querySelector('#taskboard script').innerHTML); | |
var data = taskboard.payload.data | |
var pbis_and_ranks = []; | |
for (prop in data) { | |
var current = data[prop]; | |
if (current[1] != "Product Backlog Item"){ | |
continue; | |
} |