mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
4 lines
110 B
JavaScript
4 lines
110 B
JavaScript
function toggleMuted() {
|
|
var sound = document.getElementById('music');
|
|
sound.muted = !sound.muted;
|
|
} |