improved check to see if a module is present
This commit is contained in:
parent
ad4603ddb4
commit
1e056171e6
1 changed files with 3 additions and 3 deletions
|
@ -19,14 +19,14 @@
|
||||||
callback = arguments[1];
|
callback = arguments[1];
|
||||||
url = null;
|
url = null;
|
||||||
}
|
}
|
||||||
if (locale != Ox.LOCALE && isValidLocale) {
|
if (isValidLocale) {
|
||||||
Ox.LOCALE = locale;
|
Ox.LOCALE = locale;
|
||||||
if (locale == 'en') {
|
if (locale == 'en') {
|
||||||
translations = {};
|
translations = {};
|
||||||
callback(true);
|
callback(true);
|
||||||
} else {
|
} else {
|
||||||
Ox.forEach(Ox.LOCALES, function(locales, module) {
|
Ox.forEach(Ox.LOCALES, function(locales, module) {
|
||||||
if (Ox[module] && Ox.contains(locales, locale)) {
|
if (Ox.load[module] && Ox.contains(locales, locale)) {
|
||||||
urls.push([
|
urls.push([
|
||||||
Ox.PATH + 'Ox' + (module ? '.' + module : '')
|
Ox.PATH + 'Ox' + (module ? '.' + module : '')
|
||||||
+ '/json/locale.' + locale + '.json'
|
+ '/json/locale.' + locale + '.json'
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
callback(isValidLocale);
|
callback(false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue