mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
Fix bad seeking precision
This commit is contained in:
parent
1846f1afcf
commit
86d2a8bca0
@ -610,7 +610,7 @@
|
||||
|
||||
function onPositionSliderChange() {
|
||||
|
||||
var newPercent = parseInt(this.value);
|
||||
var newPercent = parseFloat(this.value);
|
||||
|
||||
var newPositionTicks = (newPercent / 100) * getSeekableDuration();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user