mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 14:37:36 -07:00
Check if ES6 supported
This commit is contained in:
parent
f2a1b286c0
commit
cb12494a2c
1 changed files with 8 additions and 0 deletions
|
@ -6,10 +6,18 @@
|
||||||
/**
|
/**
|
||||||
* ドメインに基づいて適切なスクリプトを読み込みます。
|
* ドメインに基づいて適切なスクリプトを読み込みます。
|
||||||
* ユーザーの言語およびモバイル端末か否かも考慮します。
|
* ユーザーの言語およびモバイル端末か否かも考慮します。
|
||||||
|
* webpackは介さないためrequireやimportは使えません。
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
// Detect an old browser
|
||||||
|
if (window.fetch == undefined) {
|
||||||
|
alert(
|
||||||
|
'お使いのブラウザが古いためMisskeyを動作させることができません。' +
|
||||||
|
'バージョンを最新のものに更新するか、別のブラウザをお試しください。');
|
||||||
|
}
|
||||||
|
|
||||||
// Get the current url information
|
// Get the current url information
|
||||||
const Url = new URL(location.href);
|
const Url = new URL(location.href);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue