From 1bf6c04cfe954fdbd1262d61808eb3e7f737e390 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 4 Oct 2020 15:49:22 -0400 Subject: [PATCH] formating / tweaks --- public/index.html | 2 +- public/js/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 36e017c..c1f2ac6 100644 --- a/public/index.html +++ b/public/index.html @@ -149,7 +149,7 @@
diff --git a/public/js/index.js b/public/js/index.js index 420084e..7ad88b4 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -117,9 +117,9 @@ Litedom({ let value = Number(calories.value); if(value) { - return (value > 0) ? 'Food' : 'Exercise'; + return (value > 0) ? 'FOOD' : 'EXERCISE'; } else { - return 'Drink' + return 'DRINK' } }