Play a sound when marking a task as done
This commit is contained in:
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 New Issue
Block a user