make linter happy

This commit is contained in:
Jörg Breitbart
2018-11-15 00:25:23 +01:00
parent 9faebaf5fe
commit e3146961be
+1 -1
View File
@@ -13,7 +13,7 @@ export const DEFAULT_BELL_SOUND = 'data:audio/wav;base64,UklGRigBAABXQVZFZm10IBA
export class SoundManager implements ISoundManager {
private static _audioContext: AudioContext;
static get audioContext(): AudioContext {
if (!SoundManager._audioContext) {
const audioContextCtor: typeof AudioContext = (<any>window).AudioContext || (<any>window).webkitAudioContext;