Check Edge

This commit is contained in:
syuilo 2017-11-20 04:30:24 +09:00
parent 00d3d564fc
commit 5f040ac85d

View file

@ -1,6 +1,5 @@
/**
* 古いブラウザの検知を行う
* ブートローダーとは隔離されているため互いに影響を及ぼすことはない
* ブラウザの検証
*/
// Detect an old browser
@ -12,3 +11,13 @@ if (!('fetch' in window)) {
'Your browser seems outdated. ' +
'To run Misskey, please update your browser to latest version or try other browsers.');
}
// Detect Edge
if (navigator.userAgent.indexOf('Edge')) {
alert(
'現在、お使いのブラウザ(Microsoft Edge)ではMisskeyは正しく動作しません。' +
'サポートしているブラウザ: Google Chrome, Mozilla Firefox, Apple Safari など' +
'\n\n' +
'Currently, Misskey cannot run correctly on your browser (Microsoft Edge).' +
'Supported browsers: Google Chrome, Mozilla Firefox, Apple Safari, etc');
}