Browse Source

Show scores after game;

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

6
index.htm

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

Loading…
Cancel
Save