2016-12-31 20:23:09 -06:00
|
|
|
/**
|
2017-05-17 15:06:55 -05:00
|
|
|
* MISSKEY ENTRY POINT
|
2016-12-31 20:23:09 -06:00
|
|
|
*/
|
2016-12-31 05:26:22 -06:00
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
const Url = new URL(location.href);
|
2017-05-10 14:15:54 -05:00
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
let app = Url.host.split('.')[0];
|
2016-12-31 05:26:22 -06:00
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
// Detect user language
|
|
|
|
let lang = navigator.language.split('-')[0];
|
|
|
|
if (!/^(en|ja)$/.test(lang)) lang = 'en';
|
2016-12-31 05:26:22 -06:00
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
// Detect user agent
|
|
|
|
const ua = navigator.userAgent.toLowerCase();
|
|
|
|
const isMobile = /mobile|iphone|ipad|android/.test(ua);
|
2016-12-31 05:26:22 -06:00
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
const head = document.getElementsByTagName('head')[0];
|
2016-12-31 05:26:22 -06:00
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
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);
|
2017-03-17 10:02:41 -05:00
|
|
|
}
|
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
if (app == 'misskey') {
|
|
|
|
app = isMobile ? 'mobile' : 'desktop';
|
2016-12-31 05:26:22 -06:00
|
|
|
}
|
|
|
|
|
2017-05-17 15:06:55 -05:00
|
|
|
// 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);
|