Skip to content

Commit ca90905

Browse files
committed
Updated deprecated method usage on demos
1 parent c393d16 commit ca90905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/TestSuite.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ <h2>Sorry!</h2>
351351
createjs.Sound.stop();
352352
});
353353
$("#muteAllSoundsBtn").click(function (event) {
354-
var muted = !createjs.Sound.getMute();
354+
var muted = !createjs.Sound.muted;
355355
createjs.Sound.muted = muted;
356356
$("#muteAllSoundsBtn").attr("value", muted ? "Unmute All Sounds" : "Mute All Sounds");
357357
});

0 commit comments

Comments
 (0)