forked from server/soundboard
Minor code style improvements (mostly whitespace)
This commit is contained in:
parent
984ff20c19
commit
d0dc1a7fbd
@ -81,7 +81,6 @@ function addKeyListeners() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// keyboard listener for playing sounds using enter key
|
// keyboard listener for playing sounds using enter key
|
||||||
var buttons = document.querySelectorAll(".sound");
|
var buttons = document.querySelectorAll(".sound");
|
||||||
|
|
||||||
@ -181,7 +180,7 @@ function playSound(filename) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function killAllHowlerAudio() {
|
function killAllHowlerAudio() {
|
||||||
for(i=0; i<howlerSounds.length; i++) {
|
for (var i = 0; i < howlerSounds.length; i++) {
|
||||||
howlerSounds[i].stop();
|
howlerSounds[i].stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user