From 3480360cddb841d799891d8f120a0d5356c6e935 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Sun, 31 Dec 2017 15:06:57 +0100 Subject: [PATCH] gong at timer start - add a few TODOs --- js/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/js/index.js b/js/index.js index 5f18704..d9f4576 100644 --- a/js/index.js +++ b/js/index.js @@ -122,6 +122,8 @@ new Vue({ `, methods: { + // TODO: clic sur "Valider" télécharge la ronde courante + // TODO: mémoriser les appariements passés pour éviter que les mêmes joueurs se rencontrent plusieurs fois doPairings: function() { // Simple case first: 4 by 4 let tables = []; @@ -233,6 +235,7 @@ new Vue({ return { time: 0, //remaining time, in seconds running: false, + initialTime: 5400, //1h30 }; }, template: ` @@ -269,7 +272,7 @@ new Vue({ }, reset: function(e) { this.running = false; - this.time = 5400; //1:30 + this.time = this.initialTime; }, start: function() { if (!this.running) @@ -280,6 +283,8 @@ new Vue({ this.running = false; return; } + if (this.time == this.initialTime) + new Audio("sounds/gong.mp3").play(); //gong at the beginning setTimeout(() => { if (this.running) this.time--; -- 2.44.0