diff --git a/source/UI/js/Video/VideoElement.js b/source/UI/js/Video/VideoElement.js index 89fb7ea5..0e4e33a9 100644 --- a/source/UI/js/Video/VideoElement.js +++ b/source/UI/js/Video/VideoElement.js @@ -215,9 +215,11 @@ Ox.VideoElement = function(options, self) { function isReady($video, callback) { - if ($video[0].seeking && !self.paused) { + if ($video[0].seeking && !self.paused && !self.seeking) { that.triggerEvent('seeking'); + Ox.Log('Video', 'isReady', 'seeking'); $video.one('seeked', function(event) { + Ox.Log('Video', 'isReady', 'seeked'); that.triggerEvent('seeked'); callback($video[0]); });