Browse Source

Add templatetag for quickbet

feature/split
neroignis@gmail.com 5 years ago
parent
commit
d65fb2678e
  1. BIN
      img/chips/chipBlueWhite_sideBorder.png
  2. BIN
      img/chips/chipBlue_border.png
  3. BIN
      img/chips/chipBlue_side.png
  4. BIN
      img/chips/chipBlue_sideBorder.png
  5. BIN
      img/chips/chipGreen.png
  6. BIN
      img/chips/chipGreenWhite.png
  7. BIN
      img/chips/chipGreenWhite_border.png
  8. BIN
      img/chips/chipGreenWhite_side.png
  9. BIN
      img/chips/chipGreenWhite_sideBorder.png
  10. BIN
      img/chips/chipGreen_border.png
  11. BIN
      img/chips/chipGreen_side.png
  12. BIN
      img/chips/chipGreen_sideBorder.png
  13. BIN
      img/chips/chipRedWhite.png
  14. BIN
      img/chips/chipRedWhite_border.png
  15. BIN
      img/chips/chipRedWhite_side.png
  16. BIN
      img/chips/chipRedWhite_sideBorder.png
  17. BIN
      img/chips/chipWhite.png
  18. BIN
      img/chips/chipWhiteBlue.png
  19. BIN
      img/chips/chipWhiteBlue_border.png
  20. BIN
      img/chips/chipWhiteBlue_side.png
  21. BIN
      img/chips/chipWhiteBlue_sideBorder.png
  22. BIN
      img/chips/chipWhite_border.png
  23. BIN
      img/chips/chipWhite_side.png
  24. BIN
      img/chips/chipWhite_sideBorder.png
  25. 13
      index.htm

BIN
img/chips/chipBlueWhite_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

BIN
img/chips/chipBlue_border.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

BIN
img/chips/chipBlue_side.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1011 B

BIN
img/chips/chipBlue_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

BIN
img/chips/chipGreen.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

BIN
img/chips/chipGreenWhite.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

BIN
img/chips/chipGreenWhite_border.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

BIN
img/chips/chipGreenWhite_side.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

BIN
img/chips/chipGreenWhite_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

BIN
img/chips/chipGreen_border.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

BIN
img/chips/chipGreen_side.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1006 B

BIN
img/chips/chipGreen_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

BIN
img/chips/chipRedWhite.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

BIN
img/chips/chipRedWhite_border.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

BIN
img/chips/chipRedWhite_side.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

BIN
img/chips/chipRedWhite_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

BIN
img/chips/chipWhite.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

BIN
img/chips/chipWhiteBlue.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

BIN
img/chips/chipWhiteBlue_border.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

BIN
img/chips/chipWhiteBlue_side.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

BIN
img/chips/chipWhiteBlue_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

BIN
img/chips/chipWhite_border.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

BIN
img/chips/chipWhite_side.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 935 B

BIN
img/chips/chipWhite_sideBorder.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

13
index.htm

@ -123,15 +123,11 @@
<label>Money available:</label> <label>Money available:</label>
<span class="font-weight-bold">{{ money }}</span> <span class="font-weight-bold">{{ money }}</span>
</div> </div>
<div class="form-group" v-if="!roundActive"> <template v-if="!roundActive">
<div class="form-group">
<label>Place your bet:</label> <label>Place your bet:</label>
<input class="form-control bet-input" type="number" v-model="bet"> <input class="form-control bet-input" type="number" v-model="bet">
</div> </div>
<div class="form-group" v-else>
<label>Your bet:</label>
<span class="font-weight-bold">{{ bet }}</span>
</div>
<label class="font-weight-bold"> <label class="font-weight-bold">
Quick-Bets <small class="text-muted">(100, 250, 500, 1000)</small> Quick-Bets <small class="text-muted">(100, 250, 500, 1000)</small>
</label> </label>
@ -164,6 +160,11 @@
</div> </div>
</div> </div>
</div> </div>
</template>
<div class="form-group" v-else>
<label>Your bet:</label>
<span class="font-weight-bold">{{ bet }}</span>
</div>
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save