From d05b8062c378bfc40feb7f220d64d50f36f56da3 Mon Sep 17 00:00:00 2001 From: golemjager Date: Tue, 2 Mar 2021 10:37:19 -0700 Subject: [PATCH] Changed game selection from virtual scroller to single select combo-box Started to add v-if to "jumpto" buttons & add if statements --- src/App.vue | 105 +++++++++++++++++++--------------------------------- 1 file changed, 39 insertions(+), 66 deletions(-) diff --git a/src/App.vue b/src/App.vue index e1cc117..bc97730 100644 --- a/src/App.vue +++ b/src/App.vue @@ -125,7 +125,7 @@ - + Reset Next Level -
- - - -
+
+ + +
- Bra - Tits - Panties - Show Ass - Show Pussy - Get Toy + Bra + Tits + Panties + Show Ass + Show Pussy + Get Toy + - Panty Stuffing - Ice Cubes - Cable - Candle - Skype/Snap - Writing - Pens - Clamps - Rope - Slave Poses + Panty Stuffing + Ice Cubes + Cable + Candle + Skype/Snap + Writing + Pens + Clamps + Rope + Slave Poses @@ -385,9 +352,9 @@ export default { this.showoverlay = true; setTimeout(this.stopoverlay, 2000); }, - gamejump: function (i) { + gamejump: function () { this.ready = false; - this.currentgame = i; + this.currentgame = this.game; this.ready = true; this.reset(); }, @@ -403,7 +370,12 @@ export default { }, jumptotits: function () { this.ready = false; - this.currentLevel = 14; + if (this.currentgame == 0) { + this.currentLevel = 2; + } + else if (this.currentgame == 1) { + this.currentLevel = 1; + } this.ready = true; }, jumptopanties: function () { @@ -589,6 +561,7 @@ export default { overlayimg: "", bonuspoints: 100, timer: {}, + game: "", countdownitems: [ { text: "10", value: "10" }, { text: "20", value: "20" },