mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix bad seeking precision
This commit is contained in:
parent
1846f1afcf
commit
86d2a8bca0
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@
|
||||||
|
|
||||||
function onPositionSliderChange() {
|
function onPositionSliderChange() {
|
||||||
|
|
||||||
var newPercent = parseInt(this.value);
|
var newPercent = parseFloat(this.value);
|
||||||
|
|
||||||
var newPositionTicks = (newPercent / 100) * getSeekableDuration();
|
var newPositionTicks = (newPercent / 100) * getSeekableDuration();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue