blob: c62d933cff5323354f1e8aa427cbe36677fc96fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import setCookie from '../utils/setCookie.ts';
/**
* Triggered by the sound effect volume slider.
*/
export function changeSFXVolume() {
setCookie('sfxVolume', document.getElementById('client_sfxaudio').volume);
}
window.changeSFXVolume = changeSFXVolume;
/**
* Triggered by the testimony volume slider.
*/
export function changeTestimonyVolume() {
setCookie('testimonyVolume', document.getElementById('client_testimonyaudio').volume);
}
window.changeTestimonyVolume = changeTestimonyVolume;
/**
* Triggered by the shout volume slider.
*/
export function changeShoutVolume() {
setCookie('shoutVolume', document.getElementById('client_shoutaudio').volume);
}
window.changeShoutVolume = changeShoutVolume;
|