Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
Fix date display edge case: future dates in Moment.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dcposch committed Apr 20, 2014
1 parent cf1a642 commit 1a9a455
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion static/js/app.js
Expand Up @@ -2513,7 +2513,9 @@ function initMomentJS() {
sameDay : '[Today] LT',
lastDay : '[Yesterday]',
lastWeek: 'll',
sameElse : 'll'
sameElse: 'll',
nextDay : 'll',
nextWeek: 'll'
}
});
}

0 comments on commit 1a9a455

Please sign in to comment.