From 6b460fe8f8127b0a95b6d5cb10abcf217e3b64a7 Mon Sep 17 00:00:00 2001 From: Alex Clay Date: Tue, 15 May 2018 15:27:28 -0400 Subject: [PATCH] Fix #56 (remove duplicated music) --- js/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index 993d663..b64098d 100644 --- a/js/main.js +++ b/js/main.js @@ -54,6 +54,7 @@ subscribe("prepreload/done", function(){ subscribe("START", function(){ // Music + SOUNDS.bg_music.stop(); SOUNDS.bg_music.volume(0.5); SOUNDS.bg_music.loop(true); SOUNDS.bg_music.play(); @@ -74,4 +75,4 @@ subscribe("START", function(){ // Introduction slideshow.next(); -}); \ No newline at end of file +});