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 iteration; | |
function doWork() { | |
var burndown = iteration.burndown; | |
var product_data = burndown.data[0]; | |
var dates = burndown.dates; | |
console.log('Points remaining in iteration'); | |
for (var i=0; i<dates.length; i++) { | |
var remain = product_data.points[i]; | |
if (remain != null) { |
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 stories; | |
var resources; | |
function doWork() { | |
var sums = {}; | |
for (var i=0; i < resources.length; i++) { | |
var resource = resources[i]; | |
sums[resource.id] = { | |
name: resource.name, | |
stories: {}, | |
estimate: 0, |
NewerOlder