This commit is contained in:
syuilo 2018-05-21 21:41:06 +09:00
parent 1236a09247
commit c6b6c8afbd
2 changed files with 0 additions and 8 deletions

View file

@ -40,9 +40,6 @@
const data = JSON.parse(vuex);
if (data.device.lang) lang = data.device.lang;
}
const storedLang = localStorage.getItem('lang');
if (storedLang) lang = storedLang;
//#endregion
// Detect the user agent

View file

@ -10,11 +10,6 @@
localStorage.setItem('v', v);
}
const lang = window.prompt('Enter language (optional):');
if (lang && lang.length > 0) {
localStorage.setItem('lang', lang);
}
setTimeout(() => {
location.href = '/';
}, 500);