Skip to content

Commit a6373e7

Browse files
committed
Committing dist to only load English as fallback localization. #196.
1 parent e0fe99f commit a6373e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dist/iD.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32254,7 +32254,7 @@
3225432254
let loadStringsPromises = [];
3225532255
indexes.forEach((index, i3) => {
3225632256
const fullCoverageIndex = _localeCodes.findIndex(function(locale2) {
32257-
return index[locale2] && index[locale2].pct === 1;
32257+
return locale2 === "en" && index[locale2] && index[locale2].pct === 1;
3225832258
});
3225932259
_localeCodes.slice(0, fullCoverageIndex + 1).forEach(function(code) {
3226032260
let scopeId = Object.keys(localeDirs)[i3];

0 commit comments

Comments
 (0)