Skip to content
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.

Commit

Permalink
so little space, reduce length of project status during millstone dow…
Browse files Browse the repository at this point in the history
…nloads
  • Loading branch information
Dane Springmeyer committed Sep 13, 2012
1 parent 2facd4b commit bdd4124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/Project.server.bones
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ models.Project.prototype.localize = function(mml, callback) {
if (millstone.downloads) {
var num_downloads = Object.keys(millstone.downloads).length;
if (num_downloads) {
project_tile_status[model.id] = 'Currently downloading ' + num_downloads + ' resource' + (num_downloads > 1 ? 's' : '');
project_tile_status[model.id] = 'caching ' + num_downloads + ' resource' + (num_downloads > 1 ? 's' : '');
}
}
},1000);
Expand Down

0 comments on commit bdd4124

Please sign in to comment.