We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3414b02 commit 0108c7bCopy full SHA for 0108c7b
function.js
@@ -74,14 +74,14 @@ function selectionSort() {
74
.attr("x", function (d) {
75
return bandScale(d);
76
});
77
- var swooshAudio = new Audio("/sound-effects/swoosh.mp3");
+ var swooshAudio = new Audio("sound-effects/swoosh.mp3");
78
swooshAudio.play();
79
}
80
81
await timer(1000); // then the created Promise can be awaited
82
83
svg.selectAll("rect").style("fill", "green");
84
- var completeAudio = new Audio("/sound-effects/complete.mp3");
+ var completeAudio = new Audio("sound-effects/complete.mp3");
85
completeAudio.play();
86
87
sort();
0 commit comments