From 9e7a639ada77f42ed0132118eee31c7a5ae891cd Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 9 Mar 2012 23:27:48 +0100 Subject: [PATCH] consistantly use ?uid for video source --- source/Ox.UI/js/Video/Ox.VideoElement.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Video/Ox.VideoElement.js b/source/Ox.UI/js/Video/Ox.VideoElement.js index ea45ce20..c7d878eb 100644 --- a/source/Ox.UI/js/Video/Ox.VideoElement.js +++ b/source/Ox.UI/js/Video/Ox.VideoElement.js @@ -433,7 +433,7 @@ Ox.VideoElement = function(options, self) { self.$video[self.currentPart].src = self.options.src[self.currentPart]; self.$video.each(function(video, i) { if (i != self.currentPart) { - video.src = self.options.src[i]; + video.src = self.options.src[i] + '?' + Ox.uid(); } }); } else {