Swarthmore / litterfall

Application and Scripts used for the Litterfall Project
0 stars 1 forks source link

year does not exist anymore #63

Closed zafire06 closed 11 years ago

zafire06 commented 11 years ago

In treeUpdateView.js, line 133, instead of

var dates = this_tree.diameter.sort(function(a,b){return (b.year-a.year)});

it should be:

var dates = this_tree.diameter.sort(function(a,b){return (b.date.y-a.date.y)});