Merge pull request #1896 from shanemcd/expiration-date

*Really* display correct expiration date on license page.
This commit is contained in:
Shane McDonald 2016-05-16 14:43:45 -04:00
commit dfa85dbbd2

View File

@ -74,6 +74,7 @@ export default
var calcExpiresOn = function(days){
// calculate the expiration date of the license
days = parseInt(days);
return moment().add(days, 'days').calendar();
};
var init = function(){