Everything is horrible

This commit is contained in:
ahstro
2015-08-08 02:38:16 +02:00
parent 71a02ed8b7
commit e7c8589d08
22 changed files with 290 additions and 570 deletions

View File

@@ -75,8 +75,8 @@ module.exports = {
challengeMapForDisplay = {};
Object.keys(challengeMap).forEach(function(key) {
challengeMapForDisplay[key] = {
name: challengeMap[key].name,
dashedName: challengeMap[key].name.replace(/\s/g, '-'),
name: challengeMap[key].title,
dashedName: challengeMap[key].title.replace(/\s/g, '-'),
challenges: challengeMap[key].challenges,
completedCount: challengeMap[key].challenges
};