formating / tweaks

This commit is contained in:
Geoff Doty 2020-10-04 15:49:22 -04:00
parent 3a9a8782a8
commit 1bf6c04cfe
2 changed files with 3 additions and 3 deletions

View File

@ -149,7 +149,7 @@
<div class="footer-copyright">
<div class="container">
© 2020 Negative9.NET
<a class="grey-text text-lighten-4 right" href="#!" @click="populate">More Links</a>
<a class="grey-text text-lighten-4 right" href="#!" @click="populate">Populate</a>
</div>
</div>
<div class="container">

View File

@ -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'
}
}