Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Tighten up the retention chart a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Oct 24, 2014
1 parent d313a3d commit 834108e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/gratipay/charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Gratipay.charts.retention.make = function(data) {
for (var j=0; j < nretention; j++) {
var retained = $(document.createElement('div')).addClass('retained');
var p = parseFloat(retention[i][j][0], 10);
retained.css({background: get_color(p), height: w});
retained.css({background: get_color(p), height: '1'});
week.append(retained);
}
chart.append(week);
Expand Down

0 comments on commit 834108e

Please sign in to comment.