forked from 0x2620/pandora
Ox.break -> Ox.Break
This commit is contained in:
parent
072f9a811e
commit
bece439d62
4 changed files with 8 additions and 8 deletions
|
@ -545,7 +545,7 @@ pandora.ui.mainMenu = function() {
|
|||
Ox.forEach(elements, function(element, i) {
|
||||
if (element.hasFocus()) {
|
||||
index = i;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
elements[Ox.mod((index + direction), elements.length)].gainFocus();
|
||||
|
|
|
@ -571,7 +571,7 @@ pandora.ui.statisticsDialog = function() {
|
|||
Ox.forEach(names, function(v) {
|
||||
if (new RegExp('^' + v).test(version)) {
|
||||
name = v;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
return name;
|
||||
|
|
|
@ -214,7 +214,7 @@ pandora.ui.usersDialog = function() {
|
|||
Ox.forEach(systems, function(s) {
|
||||
if (new RegExp('^' + s).test(value)) {
|
||||
system = s;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
return system ? Ox.Element({
|
||||
|
@ -249,7 +249,7 @@ pandora.ui.usersDialog = function() {
|
|||
Ox.forEach(browsers, function(b) {
|
||||
if (new RegExp('^' + b).test(value)) {
|
||||
browser = b;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
return browser ? Ox.Element({
|
||||
|
@ -592,7 +592,7 @@ pandora.ui.usersDialog = function() {
|
|||
).options('items'), function($item) {
|
||||
if ($item.options('id') == id) {
|
||||
ret = $item;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
return ret;
|
||||
|
|
|
@ -627,7 +627,7 @@ pandora.getItemFind = function(find) {
|
|||
&& ['=', '=='].indexOf(condition.operator) > -1
|
||||
) {
|
||||
itemFind = condition.value;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
})
|
||||
return itemFind;
|
||||
|
@ -865,7 +865,7 @@ pandora.getVideoPartsAndPoints = function(durations, points) {
|
|||
Ox.loop(parts - 1, -1, -1, function(i) {
|
||||
if (offsets[i] <= point) {
|
||||
ret.parts[i] = i;
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -1248,7 +1248,7 @@ pandora.unloadWindow = function() {
|
|||
Ox.forEach(pandora.user.ui.filters, function(key) {
|
||||
if (everyCondition(find.conditions, key, '==')) {
|
||||
state.key = '*';
|
||||
Ox.break();
|
||||
Ox.Break();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue