mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 05:56:38 +01:00
21 lines
545 B
HTML
21 lines
545 B
HTML
<script type="text/hyperscript">
|
|
on paid if body do not include #settings-mute-sound
|
|
js
|
|
volume = JSON.parse(document.getElementById('volume').textContent) / 10
|
|
paidSound.pause()
|
|
paidSound.currentTime = 0
|
|
paidSound.volume = volume
|
|
paidSound.play()
|
|
end
|
|
end
|
|
on unpaid if body do not include #settings-mute-sound
|
|
js
|
|
volume = JSON.parse(document.getElementById('volume').textContent) / 10
|
|
unpaidSound.pause()
|
|
unpaidSound.currentTime = 0
|
|
unpaidSound.volume = volume
|
|
unpaidSound.play()
|
|
end
|
|
end
|
|
</script>
|