This commit is contained in:
j 2010-11-28 17:26:27 +01:00
commit af8244a173

View File

@ -10318,15 +10318,16 @@ requires
if (self.options.type == 'play') { if (self.options.type == 'play') {
self.video.currentTime = self.options.position; self.video.currentTime = self.options.position;
} else { } else {
self.$loadingIcon = new Ox.LoadingIcon() self.$loadingIcon && self.$loadingIcon.stop();
.appendTo(that) if (self.$video.attr('src') != self.options.url(self.options.position)) {
.start(); self.$loadingIcon = new Ox.LoadingIcon()
self.$video.attr({ .appendTo(that)
src: self.options.url(self.options.position) .start();
}) self.$video.attr({
.one('load', function() { src: self.options.url(self.options.position)
self.$loadingIcon.stop(); })
}); .load(self.$loadingIcon.stop);
}
} }
setMarkers(); setMarkers();
setSubtitle(); setSubtitle();