remove extra parenthesis

This commit is contained in:
Berkeley Martinez
2016-02-22 22:28:32 -08:00
parent 2fb922be0f
commit adfb21aaf9

View File

@ -23,16 +23,16 @@ export default function about(app) {
daysRunning, daysRunning,
title: dedent` title: dedent`
About our Open Source Community, our social media presence, About our Open Source Community, our social media presence,
and how to contact us`.split('\n').join(' '), and how to contact us
`.split('\n').join(' '),
globalCompletedCount: numberWithCommas( globalCompletedCount: numberWithCommas(
5612952 + (Math.floor((Date.now() - 1446268581061) / 1800) 5612952 + (Math.floor((Date.now() - 1446268581061) / 1800))
), ),
globalPledgedAmount: numberWithCommas( globalPledgedAmount: numberWithCommas(
28000.00 + 28000.00 +
(Math.floor( (
(Date.now() - 1456207176902) / Math.floor((Date.now() - 1456207176902) / (2629746 / 2000)) *
(2629746 / 2000) 8.30
) * 8.30)
) )
) )
}); });