+
Score: {{ score }}
+ Fishies caught: {{ fishiesCaught.length }}
+
+
diff --git a/js/app.js b/js/app.js
index 3a5998d..7f47c4f 100644
--- a/js/app.js
+++ b/js/app.js
@@ -122,14 +122,14 @@ const FishApp = {
window.clearInterval(this.intervals.fishMovementIntervalID);
this.score += this.fishy.points;
- this.fishyCaught.push(this.fishy);
+ this.fishiesCaught.push(this.fishy);
this.fishy = null;
this.pull = false;
iziToast.success({
title: 'fischi ist jetzt dein freund',
- position: 'topCenter'
+ position: 'bottomCenter'
});
},
fishyFled() {
@@ -140,7 +140,7 @@ const FishApp = {
iziToast.warning({
title: 'fischi fort!',
- position: 'topCenter'
+ position: 'bottomCenter'
});
}
}