fix use of Ox.map, Ox.loop

This commit is contained in:
j 2012-05-23 17:13:38 +02:00
commit f97352ee61
6 changed files with 10 additions and 10 deletions

View file

@ -93,11 +93,11 @@ Ox.load.Unicode = function(options, callback) {
Ox.toASCII = function(str) {
return Ox.map(str, function(chr) {
return chars[chr].ascii || chr;
}).join('');
});
};
callback(true);
});
}
}