Play a sound when marking a task as done
This commit is contained in:
parent
91a4a39527
commit
7f5140bbb4
8 changed files with 42 additions and 2 deletions
11
src/helpers/playPop.js
Normal file
11
src/helpers/playPop.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export const playSoundWhenDoneKey = 'playSoundWhenTaskDone'
|
||||
|
||||
export const playPop = () => {
|
||||
const enabled = localStorage.getItem(playSoundWhenDoneKey) === 'true' || localStorage.getItem(playSoundWhenDoneKey) === null
|
||||
if(!enabled) {
|
||||
return
|
||||
}
|
||||
|
||||
const popSound = new Audio('/audio/pop.wav')
|
||||
popSound.play()
|
||||
}
|
||||
Reference in a new issue