1
0
Fork 0
forked from 0x2620/oxjs

Ox.break -> Ox.Break

This commit is contained in:
rolux 2012-05-24 19:20:29 +02:00
commit 544e117cb3
41 changed files with 100 additions and 100 deletions

View file

@ -1227,7 +1227,7 @@ Ox.VideoPlayer = function(options, self) {
&& v.out > self.options.position
) {
censored = true;
Ox.break();
Ox.Break()();
}
});
return censored;
@ -1405,7 +1405,7 @@ Ox.VideoPlayer = function(options, self) {
&& v.out >= self.options.position
) {
subtitle = v.text;
Ox.break();
Ox.Break()();
}
});
return subtitle;
@ -1454,7 +1454,7 @@ Ox.VideoPlayer = function(options, self) {
var left = 0;
Ox.forEach(self.options.controlsBottom, function(control) {
if (control == 'timeline') {
Ox.break();
Ox.Break()();
}
left += control == 'position' ? self.positionWidth : 16
});
@ -1538,7 +1538,7 @@ Ox.VideoPlayer = function(options, self) {
) {
result = v
found = true;
Ox.break();
Ox.Break()();
}
});
direction == -1 && self.results.reverse();