intl change locale tested

This commit is contained in:
Peter Cottle 2015-03-23 20:30:41 -07:00
parent adbe798b25
commit d45651aad2
2 changed files with 44 additions and 2 deletions

View file

@ -30,9 +30,9 @@ var toGlobalize = {
Intl: require('../intl')
};
_.each(toGlobalize, function(module) {
_.each(toGlobalize, function(module, moduleName) {
for (var key in module) {
window['debug_' + key] = module[key];
window['debug_' + moduleName + '_' + key] = module[key];
}
});