use [].some, not Ox.getObject

This commit is contained in:
rolux 2012-05-21 09:40:40 +03:00
parent bb6f6d6471
commit 503c2b5978

View file

@ -123,10 +123,11 @@ Ox.VideoPreview = function(options, self) {
Ox.loop(0, self.options.width, step, function(x) {
var position = getPosition(x),
frame = self.options.getFrame(position);
if (
!Ox.getObject(self.loaded, 'frame', frame)
&& !Ox.getObject(self.queue, 'frame', frame)
) {
if (!self.loaded.some(function(image) {
return image.frame == frame;
}) && !self.queue.some(function(image) {
return image.frame == frame;
})) {
self.queue.push({frame: frame, position: position});
}
});