add a modal that allows one to scroll through all wiki pages

This commit is contained in:
Michael Q Larson
2015-03-30 15:55:00 -07:00
parent 23a3e235a7
commit 106a10edca
6 changed files with 47 additions and 19 deletions

4
app.js
View File

@ -473,6 +473,8 @@ app.get('/api/trello', resourcesController.trelloCalls);
app.get('/bonfires/getBonfireList', bonfireController.showAllBonfires);
app.get('/wiki/getWikiList', wikiController.showAllWikis);
app.get('/playground', bonfireController.index);
app.get('/bonfires', bonfireController.returnNextBonfire);
@ -483,7 +485,7 @@ app.post('/bonfire-json-generator', bonfireController.generateChallenge);
app.get('/bonfire-challenge-generator', bonfireController.publicGenerator);
app.post('/bonfire-challenge-generator', bonfireController.testBonfire)
app.post('/bonfire-challenge-generator', bonfireController.testBonfire);
app.get(
'/bonfires/:bonfireName',