1
0
Fork 0
forked from 0x2620/oxjs

use Ox.break

This commit is contained in:
rolux 2012-05-22 09:11:26 +02:00
commit 04784630d3
42 changed files with 117 additions and 118 deletions

View file

@ -441,9 +441,9 @@ Ox.VideoElement = function(options, self) {
}
});
} else {
Ox.forEach(self.items[0].$videos, function($video, i) {
self.items[0].$videos.forEach(function($video, i) {
var src = self.options.src[i];
if(Ox.parseURL(src).protocol.substr(0, 4) == 'http') {
if (Ox.parseURL(src).protocol.substr(0, 4) == 'http') {
src += '?' + Ox.uid();
}
$video[0].src = src;