fix seeking to beginning of item
This commit is contained in:
parent
861452512f
commit
f538cf2b0b
1 changed files with 4 additions and 2 deletions
|
@ -304,8 +304,10 @@ Ox.VideoElement = function(options, self) {
|
||||||
callback && callback();
|
callback && callback();
|
||||||
loadNextVideo();
|
loadNextVideo();
|
||||||
});
|
});
|
||||||
Ox.Log('Video', 'sCV set in', video.src, item['in'] || 0, video.currentTime, video.seeking);
|
if (!self.seeking) {
|
||||||
video.currentTime = item['in'] || 0;
|
Ox.Log('Video', 'sCV set in', video.src, item['in'] || 0, video.currentTime, video.seeking);
|
||||||
|
video.currentTime = item['in'] || 0;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue