Fix html10n cache and lang fallback

This commit is contained in:
Marcel Klehr 2012-12-19 17:04:36 +01:00
parent e3f9ed37b4
commit a2b2257851

View file

@ -92,8 +92,7 @@ window.html10n = (function(window, document, undefined) {
var that = this
if (this.cache[href]) {
this.parse(this.cache[href])
cb()
this.parse(lang, this.cache[href], cb)
return;
}
@ -123,6 +122,7 @@ window.html10n = (function(window, document, undefined) {
return
}
if (!data[lang]) lang = lang.substr(0,2)
if (!data[lang]) {
cb(new Error('Couldn\'t find translations for '+lang))
return