Realizei o mesmo código como mostra no video, porém a notificação não aprece. Uso Windows 10 pro com base x64.
botaoPlay.addEventListener('click' , function () {
if (play) {
timer.parar(curso.textContent);
play = false;
new Notification('Alura Timer', {
body: O curso ${curso.textContent} foi parado!
,
icon: 'img/stop-button.png'
});
} else {
timer.iniciar(tempo);
play = true;
new Notification('Alura Timer', {
body: O curso ${curso.textContent} foi iniciado!
,
icon: 'img/play-button.png'
});
}
imgs = imgs.reverse();
botaoPlay.src = imgs[0];
});
Poderia verificar se estou errando em alguma lugar ou devo fazer algum outro processo?