diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-03-23 19:00:04 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-03-23 19:00:04 +0900 |
| commit | 50e65d292c2425dc24aa37c593e401b2114469e6 (patch) | |
| tree | d30e3848b49cd23b3c3c4c4fc9550e91bac14b25 /src/web/app/client | |
| parent | wip #313 (diff) | |
| download | sharkey-50e65d292c2425dc24aa37c593e401b2114469e6.tar.gz sharkey-50e65d292c2425dc24aa37c593e401b2114469e6.tar.bz2 sharkey-50e65d292c2425dc24aa37c593e401b2114469e6.zip | |
Refactoring
Diffstat (limited to 'src/web/app/client')
| -rw-r--r-- | src/web/app/client/script.js | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/src/web/app/client/script.js b/src/web/app/client/script.js index 876d2c1694..d46aa4a181 100644 --- a/src/web/app/client/script.js +++ b/src/web/app/client/script.js @@ -12,32 +12,19 @@ const ua = navigator.userAgent.toLowerCase(); const isMobile = /mobile|iphone|ipad|android/.test(ua); - isMobile ? mountMobile() : mountDesktop(); + const app = isMobile ? 'mobile' : 'desktop'; - /** - * Mount the desktop app - */ - function mountDesktop() { - const script = document.createElement('script'); - script.setAttribute('src', `/assets/desktop/script.${VERSION}.${lang}.js`); - script.setAttribute('async', 'true'); - script.setAttribute('defer', 'true'); - head.appendChild(script); - } + // Load app script + const script = document.createElement('script'); + script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`); + script.setAttribute('async', 'true'); + script.setAttribute('defer', 'true'); + head.appendChild(script); - /** - * Mount the mobile app - */ - function mountMobile() { + if (isMobile) { const meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no'); head.appendChild(meta); - - const script = document.createElement('script'); - script.setAttribute('src', `/assets/mobile/script.${VERSION}.${lang}.js`); - script.setAttribute('async', 'true'); - script.setAttribute('defer', 'true'); - head.appendChild(script); } })(); |