()
| 113 | this._timeDisplay.innerText = formatTime(this._currentTime) + ' / ' + formatTime(this._duration) |
| 114 | } |
| 115 | private _updateProgress() { |
| 116 | this._progressBar.progress = this.currentTime / this.duration |
| 117 | } |
| 118 | private _updateVolume() { |
| 119 | if (this._player.muted) { |
| 120 | this._volume.innerHTML = Icons.VolumeMute |
no outgoing calls
no test coverage detected