From 1cbaee2d6752a172e49a7cf09898dc1c1750599f Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 13 Mar 2015 07:09:20 +0000 Subject: [PATCH] only update timeline src if image has index(ignore loading icon and others), fixes #2709 --- source/UI/js/Video/VideoTimelinePlayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/UI/js/Video/VideoTimelinePlayer.js b/source/UI/js/Video/VideoTimelinePlayer.js index 645ad8f3..e6d9d6bc 100644 --- a/source/UI/js/Video/VideoTimelinePlayer.js +++ b/source/UI/js/Video/VideoTimelinePlayer.js @@ -851,7 +851,7 @@ Ox.VideoTimelinePlayer = function(options, self) { function updateTimeline() { self.$timelinePlayer.find('img').each(function() { var $this = $(this); - $this.attr({ + $this.data('index') && $this.attr({ src: self.options.getLargeTimelineURL( self.options.timeline, $this.data('index') )