]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/assets/player/videojs-components/peertube-load-progress-bar.ts
Fix live duration in player
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / videojs-components / peertube-load-progress-bar.ts
index 7869b56ce989473ee95da348f01cb7385366902f..623e70eb2342f0d62edd32b8c08b07e59588e045 100644 (file)
@@ -25,7 +25,6 @@ class PeerTubeLoadProgressBar extends Component {
     const torrent = this.player().webtorrent().getTorrent()
     if (!torrent) return
 
-    // FIXME: typings
     (this.el() as HTMLElement).style.width = (torrent.progress * 100) + '%'
   }