Tiny update

This commit is contained in:
José Valdiviesso 2017-11-12 21:17:13 +00:00
parent 908e39b7bb
commit 085f6a76fd
5 changed files with 8 additions and 2 deletions

4
.travis.yml Normal file
View File

@ -0,0 +1,4 @@
language: node_js
node_js:
- stable

0
.vscode/launch.json vendored Normal file
View File

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"python.pythonPath": "C:\\Program Files\\Python36\\python.exe"
}

View File

@ -6,5 +6,4 @@ router.get('/', function(req, res, next) {
res.render('index', { title: 'Composite Reactions', comp: true});
});
module.exports = router;

View File

@ -3,7 +3,7 @@ var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'EVE Reactions Calculator', root: true});
res.render('index', { title: 'EVE Reactions Calculator', root: true});
});
module.exports = router;