Fire a DOM event when we have translators

This commit is contained in:
Simon Kornblith 2012-02-20 04:18:06 -05:00
parent 0d34e34a3a
commit b5d236fc9d

View file

@ -425,6 +425,10 @@ function haveTranslators(translators, type) {
translatorTestViewsToRun[type].push(translatorTestView);
}
}
var ev = document.createEvent('HTMLEvents');
ev.initEvent('ZoteroHaveTranslators-'+type, true, true);
document.dispatchEvent(ev);
}
/**