seeked never triggers if video is paused
This commit is contained in:
parent
4544efc02c
commit
de5f82045b
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ Ox.VideoElement = function(options, self) {
|
|||
|
||||
|
||||
function isReady($video, callback) {
|
||||
if ($video[0].seeking) {
|
||||
if ($video[0].seeking && !self.paused) {
|
||||
that.triggerEvent('seeking');
|
||||
$video.one('seeked', function(event) {
|
||||
that.triggerEvent('seeked');
|
||||
|
|
Loading…
Reference in a new issue