Removed error sound effect

This commit is contained in:
AlexKvazos
2015-04-29 19:04:15 -05:00
parent ba921ea55e
commit 971779cf57
3 changed files with 0 additions and 5 deletions
-4
View File
@@ -4,14 +4,10 @@ module.exports = function() {
var error = "error";
createjs.Sound.registerSound("/sounds/connected.mp3", connected);
createjs.Sound.registerSound("/sounds/error.mp3", error);
return {
connected: function() {
createjs.Sound.play(connected);
},
error: function() {
createjs.Sound.play(error);
}
};