forked from 0x2620/oxjs
Ox.break -> Ox.Break
This commit is contained in:
parent
b7d9d9ba54
commit
544e117cb3
41 changed files with 100 additions and 100 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue