1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-15 02:18:42 +02:00

fix __edgeMessages

This commit is contained in:
Kyle Spearrin 2017-11-04 23:46:15 -04:00
parent 4fb2d879ec
commit 38e235302c

View File

@ -1,7 +1,8 @@
export default function i18nService(utilsService) {
this.__edgeMessages = {};
const self = this;
if (utilsService.isEdge()) {
this.__edgeMessages = {};
const self = this;
fetch('../_locales/en/messages.json').then((file) => {
return file.json();
}).then((locales) => {