Browse Source

Show scores after game;

feature/split
Nero Ignis 5 years ago
parent
commit
2d2fc52eeb
  1. 8
      index.htm

8
index.htm

@ -58,9 +58,7 @@
<div class="col-md-12 hand"> <div class="col-md-12 hand">
<h4> <h4>
Dealer Dealer
<template v-if="roundActive"> ({{ dealerScore }})
({{ dealerScore }})
</template>
</h4> </h4>
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
@ -74,10 +72,10 @@
<div class="col-md-12 hand"> <div class="col-md-12 hand">
<h4> <h4>
Hand Hand
<template v-if="roundActive">(Points: (Points:
{{ handScore === 21 && usersHand.count < 2 ? 'BlackJack' : handScore > 21 ? 'Plus! ' + handScore : handScore {{ handScore === 21 && usersHand.count < 2 ? 'BlackJack' : handScore > 21 ? 'Plus! ' + handScore : handScore
}}) }})
</template>
</h4> </h4>
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">

Loading…
Cancel
Save