Sound gestion improved

This commit is contained in:
Clement Gournay 2015-07-18 12:03:20 +09:00
parent c1985ddefc
commit 96677c8635
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ function SongSelect(){
});
$(".song:not(.opened)").click(function(){
//assets.sounds["ka"][0].play();
assets.sounds["ka"].play();
$(".difficulty").hide();
$(".opened").removeClass("opened", 300);
$(this).addClass("opened", 300, "linear", function(){

View File

@ -35,7 +35,7 @@ function Titlescreen(){
}
this.goNext = function(){
//assets.sounds["don"][0].play();
assets.sounds["don"].play();
new SongSelect();
}