@arcblock/www-wallet
Version:
Start experiencing your digital world with ABT Wallet
31 lines (30 loc) • 925 B
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script>
var getCookie = function(name) {
var value = '; ' + document.cookie;
var parts = value.split('; ' + name + '=');
if (parts.length == 2)
return parts
.pop()
.split(';')
.shift();
};
var langs = ["en","zh"];
var defaultLang = "en";
var lang = getCookie("nf_lang");
if (lang && langs.indexOf(lang) > -1) {
window.location.href = "/" + lang + "/";
} else if (defaultLang && langs.indexOf(defaultLang) > -1) {
window.location.href = "/" + defaultLang + "/";
} else {
window.location.href = "/" + langs[0] + "/";
}
</script>
</head>
<body></body>
</html>