mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-02-25 17:04:51 +01:00
17 lines
331 B
HTML
17 lines
331 B
HTML
<script type="text/hyperscript">
|
|
on paid if body do not include #settings-mute-sound
|
|
js
|
|
paidSound.pause()
|
|
paidSound.currentTime = 0
|
|
paidSound.play()
|
|
end
|
|
end
|
|
on unpaid if body do not include #settings-mute-sound
|
|
js
|
|
unpaidSound.pause()
|
|
unpaidSound.currentTime = 0
|
|
unpaidSound.play()
|
|
end
|
|
end
|
|
</script>
|