Sort contributions search result
This commit is contained in:
parent
3fe0e8d2ef
commit
ecbc75df06
2 changed files with 10 additions and 7 deletions
|
@ -180,7 +180,6 @@ show_contributions=function(group,contributor_email,contributions) {
|
||||||
tbody.html('');
|
tbody.html('');
|
||||||
if (!contributions) {
|
if (!contributions) {
|
||||||
contributions=group.contributionsByContributorEmail(contributor_email);
|
contributions=group.contributionsByContributorEmail(contributor_email);
|
||||||
contributions.reverse();
|
|
||||||
}
|
}
|
||||||
_current_displayed_contributions=contributions;
|
_current_displayed_contributions=contributions;
|
||||||
_current_displayed_contributions_group=group;
|
_current_displayed_contributions_group=group;
|
||||||
|
|
|
@ -230,18 +230,22 @@ function Group(uuid,name,data) {
|
||||||
ret.push(this.contributions[uuid]);
|
ret.push(this.contributions[uuid]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret.sort(function(a,b) {
|
return this.sortContributionsByDate(ret);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.sortContributionsByDate=function(contributions) {
|
||||||
|
contributions.sort(function(a,b) {
|
||||||
if (a.date==b.date) {
|
if (a.date==b.date) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else if(a.date<b.date) {
|
else if(a.date<b.date) {
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return ret;
|
return contributions;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.deletedContributionsByContributorEmail=function(email) {
|
this.deletedContributionsByContributorEmail=function(email) {
|
||||||
|
@ -345,7 +349,7 @@ function Group(uuid,name,data) {
|
||||||
ret.push(this.contributions[uuid]);
|
ret.push(this.contributions[uuid]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ret;
|
return this.sortContributionsByDate(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.getContributionsByCategory=function (category) {
|
this.getContributionsByCategory=function (category) {
|
||||||
|
|
Loading…
Reference in a new issue