Skip to content

Commit

Permalink
allow points submission 7 days after event instead of 4
Browse files Browse the repository at this point in the history
  • Loading branch information
benthemonkey committed Jun 26, 2015
1 parent 83f0eab commit 58a35e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/pointsCenter.js
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ define(['jquery', 'moment', 'hogan'], function($, moment, Hogan){
.wrap('<div class="input-group-btn"></div>');
*/
//dates
for(i = 0; i < 5; i++){
for(i = 0; i < 8; i++){
date = moment().subtract('days', i).format('YYYY-MM-DD');
$('<option />').text(moment(date).format('ddd, M/D')).attr('value', date).appendTo('#date');
}
Expand Down

0 comments on commit 58a35e2

Please sign in to comment.