()
| 103 | } |
| 104 | |
| 105 | destroy(): void { |
| 106 | this.teardownObserver(); |
| 107 | for (const m of this._entries) { |
| 108 | m.el.pause(); |
| 109 | m.el.src = ""; |
| 110 | } |
| 111 | this._entries = []; |
| 112 | this._urlAudioEntry = null; |
| 113 | this._urlAudioSrc = null; |
| 114 | } |
| 115 | |
| 116 | updateMuted(muted: boolean): void { |
| 117 | for (const m of this._entries) m.el.muted = muted; |