Fix bad seeking precision

This commit is contained in:
softworkz 2016-08-20 07:22:08 +02:00
parent 1846f1afcf
commit 86d2a8bca0

View File

@ -610,7 +610,7 @@
function onPositionSliderChange() {
var newPercent = parseInt(this.value);
var newPercent = parseFloat(this.value);
var newPositionTicks = (newPercent / 100) * getSeekableDuration();