Test changes and removed useless function stuff

This commit is contained in:
Thomas FORGIONE 2015-05-22 17:14:09 +02:00
parent 02650d6ea6
commit d385c9ee22
2 changed files with 8 additions and 12 deletions

18
js/prototype/Coin.js vendored
View File

@ -51,18 +51,14 @@ Coin.prototype.get = function() {
var music = document.getElementById('music');
var wasPlaying = !music.paused;
music.pause();
(function(music, wasPlaying) {
setTimeout(function() {
Coin.lastSound.play();
setTimeout(function() {
Coin.lastSound.play();
(function(wasPlaying) {
setTimeout(function() {
if (wasPlaying) {
music.play();
}
}, Coin.lastSound.duration*1000);
})(wasPlaying);
}, Coin.nextSound.duration*1000);
})(music, wasPlaying);
if (wasPlaying) {
music.play();
}
}, Coin.lastSound.duration*1000);
}, Coin.nextSound.duration*1000);
} else {
Coin.nextSound = new Audio('/static/data/music/redcoins/' + Coin.total + Coin.extension);
Coin.nextSound.preload = "auto";

View File

@ -85,5 +85,5 @@ if ( app.get('env') === 'development' ) {
}
// Start server
console.log("Server ready : " + server_ip_address + ":" + server_port);
console.log("Server ready : now listening " + server_ip_address + ":" + server_port);
app.listen(server_port, server_ip_address);