Disables Unicode isolation to get rid of "PDI" and "FSI" boxes all over the place in Edge.
This commit is contained in:
Lesley Norton 2018-10-24 16:32:57 -05:00
Родитель b89d852121
Коммит 8f1457a686
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ const LocaleUtils = {
});
for (const lang of languageDirectories) {
try {
const langBundle = new FluentBundle(lang);
const langBundle = new FluentBundle(lang, {useIsolating: false});
const ftlFiles = fs.readdirSync(path.join(localesDir, lang)).filter(item => {
return (item.endsWith(".ftl"));
});