aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/changeSFXVolume.js
blob: 0c3009f99abef502a742fbd534ce012d58308307 (plain)
1
2
3
4
5
6
7
8
9
10
import setCookie from '../utils/setCookie';

/**
 * Triggered by the sound effect volume slider.
 */

export function changeSFXVolume() {
  setCookie('sfxVolume', document.getElementById('client_sfxaudio').volume);
}
window.changeSFXVolume = changeSFXVolume;