wip #313
This commit is contained in:
parent
4e387cf7d0
commit
abb8e021ba
7 changed files with 112 additions and 77 deletions
|
@ -4,6 +4,10 @@
|
|||
(() => {
|
||||
const head = document.getElementsByTagName('head')[0];
|
||||
|
||||
// Detect user language
|
||||
let lang = (navigator.languages && navigator.languages[0]) || navigator.language;
|
||||
if (!/en|en\-US|ja/.test(lang)) lang = 'en';
|
||||
|
||||
// Detect user agent
|
||||
const ua = navigator.userAgent.toLowerCase();
|
||||
const isMobile = /mobile|iphone|ipad|android/.test(ua);
|
||||
|
@ -15,7 +19,7 @@
|
|||
*/
|
||||
function mountDesktop() {
|
||||
const script = document.createElement('script');
|
||||
script.setAttribute('src', `/assets/desktop/script.${VERSION}.js`);
|
||||
script.setAttribute('src', `/assets/desktop/script.${VERSION}.${lang}.js`);
|
||||
script.setAttribute('async', 'true');
|
||||
script.setAttribute('defer', 'true');
|
||||
head.appendChild(script);
|
||||
|
@ -31,7 +35,7 @@
|
|||
head.appendChild(meta);
|
||||
|
||||
const script = document.createElement('script');
|
||||
script.setAttribute('src', `/assets/mobile/script.${VERSION}.js`);
|
||||
script.setAttribute('src', `/assets/mobile/script.${VERSION}.${lang}.js`);
|
||||
script.setAttribute('async', 'true');
|
||||
script.setAttribute('defer', 'true');
|
||||
head.appendChild(script);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<li class="home { active: page == 'home' }">
|
||||
<a href={ CONFIG.url }>
|
||||
<i class="fa fa-home"></i>
|
||||
<p>ホーム</p>
|
||||
<p>'i18n:home'</p>
|
||||
</a>
|
||||
</li>
|
||||
<li class="messaging">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue