diff --git a/build/js/ox.ui.js b/build/js/ox.ui.js index 069b09e7..c18cd75a 100644 --- a/build/js/ox.ui.js +++ b/build/js/ox.ui.js @@ -12161,16 +12161,18 @@ requires }); function changeLargeTimeline(event, data) { - self.$video.position(data.position); + self.options.position = data.position; + self.$video.position(self.options.position); self.$timeline.small.options({ - position: data.position + position: self.options.position }); } function changeSmallTimeline(event, data) { - self.$video.position(data.position); + self.options.position = data.position; + self.$video.position(self.options.position); self.$timeline.large.options({ - position: data.position + position: self.options.position }); }