Minor code style improvements (mostly whitespace)

This commit is contained in:
Martin Müller 2017-09-14 18:33:01 +02:00
parent 984ff20c19
commit d0dc1a7fbd

View File

@ -81,7 +81,6 @@ function addKeyListeners() {
}
};
// keyboard listener for playing sounds using enter key
var buttons = document.querySelectorAll(".sound");
@ -181,7 +180,7 @@ function playSound(filename) {
}
function killAllHowlerAudio() {
for(i=0; i<howlerSounds.length; i++) {
for (var i = 0; i < howlerSounds.length; i++) {
howlerSounds[i].stop();
}
}