mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
fixing the bongs
This commit is contained in:
parent
e5e4937e8f
commit
753864ccf3
1 changed files with 5 additions and 6 deletions
|
@ -5,7 +5,6 @@
|
|||
<span class="nominator" :style="nominatorStyle"></span>
|
||||
</div>
|
||||
<div class="overlay">
|
||||
<audio src="../assets/sounds/countdown.mp3" preload="auto"></audio>
|
||||
<em class="blue">{{ nominator.name }}</em> nominated
|
||||
<em>{{ nominee.name }}</em
|
||||
>!
|
||||
|
@ -105,11 +104,6 @@
|
|||
<span>2</span>
|
||||
<span>1</span>
|
||||
<span>GO</span>
|
||||
<audio
|
||||
:autoplay="!grimoire.isMuted"
|
||||
src="../assets/sounds/countdown.mp3"
|
||||
:muted="grimoire.isMuted"
|
||||
></audio>
|
||||
</div>
|
||||
</transition>
|
||||
</div>
|
||||
|
@ -117,6 +111,7 @@
|
|||
|
||||
<script>
|
||||
import { mapGetters, mapState } from "vuex";
|
||||
import bongs from "../assets/sounds/countdown.mp3";
|
||||
|
||||
export default {
|
||||
computed: {
|
||||
|
@ -194,6 +189,10 @@ export default {
|
|||
countdown() {
|
||||
this.$store.commit("session/lockVote", 0);
|
||||
this.$store.commit("session/setVoteInProgress", true);
|
||||
if (!this.grimoire.isMuted) {
|
||||
var sound = new Audio(bongs);
|
||||
sound.play();
|
||||
}
|
||||
this.voteTimer = setInterval(() => {
|
||||
this.start();
|
||||
}, 4000);
|
||||
|
|
Loading…
Add table
Reference in a new issue