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];
|
||||
url = null;
|
||||
}
|
||||
if (locale != Ox.LOCALE && isValidLocale) {
|
||||
if (isValidLocale) {
|
||||
Ox.LOCALE = locale;
|
||||
if (locale == 'en') {
|
||||
translations = {};
|
||||
callback(true);
|
||||
} else {
|
||||
Ox.forEach(Ox.LOCALES, function(locales, module) {
|
||||
if (Ox[module] && Ox.contains(locales, locale)) {
|
||||
if (Ox.load[module] && Ox.contains(locales, locale)) {
|
||||
urls.push([
|
||||
Ox.PATH + 'Ox' + (module ? '.' + module : '')
|
||||
+ '/json/locale.' + locale + '.json'
|
||||
|
@ -42,7 +42,7 @@
|
|||
});
|
||||
}
|
||||
} else {
|
||||
callback(isValidLocale);
|
||||
callback(false);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue