Transition new blocks from the mempool onto the blockchain.
Chime on new blocks. fixes #47 fixes #84
This commit is contained in:
@@ -5,17 +5,20 @@ import { Injectable } from '@angular/core';
|
||||
})
|
||||
export class AudioService {
|
||||
audio = new Audio();
|
||||
isPlaying = false;
|
||||
|
||||
constructor() { }
|
||||
|
||||
public playSound(name: 'magic' | 'chime' | 'cha-ching') {
|
||||
try {
|
||||
this.audio.src = '../../../resources/sounds/' + name + '.mp3';
|
||||
this.audio.load();
|
||||
this.audio.play();
|
||||
} catch (e) {
|
||||
console.log('Play sound failed', e);
|
||||
public playSound(name: 'magic' | 'chime' | 'cha-ching' | 'bright-harmony') {
|
||||
if (this.isPlaying) {
|
||||
return;
|
||||
}
|
||||
this.isPlaying = true;
|
||||
this.audio.src = '../../../resources/sounds/' + name + '.mp3';
|
||||
this.audio.load();
|
||||
this.audio.play().catch((e) => {
|
||||
console.log('Play sound failed', e);
|
||||
});
|
||||
setTimeout(() => this.isPlaying = false, 100);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user