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() {
|
||||
|
||||
var newPercent = parseInt(this.value);
|
||||
var newPercent = parseFloat(this.value);
|
||||
|
||||
var newPositionTicks = (newPercent / 100) * getSeekableDuration();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue