We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d13f48d commit f9a4287Copy full SHA for f9a4287
index.html
@@ -13,13 +13,13 @@
13
14
var language = navigator.browserLanguage;
15
16
- if (language.indexOf(“en”) > -1) document.location.href = “en / index.html”;
+ if (language.indexOf(“en”) > -1) document.location.href = “en/index.html”;
17
18
- else if (language.indexOf(“zh”) > -1) document.location.href = ”cn / index.html”;
+ else if (language.indexOf(“zh”) > -1) document.location.href = ”cn/index.html”;
19
20
else
21
22
- document.location.href = ”en / index.html”;
+ document.location.href = ”en/index.html”;
23
</script>
24
</head>
25
0 commit comments