This commit is contained in:
syuilo 2017-05-18 05:18:32 +09:00
parent a7e5b64a3d
commit 81c5293c6c
1 changed files with 11 additions and 11 deletions

View File

@ -170,17 +170,17 @@ function panic(e) {
// Display blue screen // Display blue screen
document.body.innerHTML = document.body.innerHTML =
`<div id="error"> '<div id="error">'
<h1>:( 致命的な問題が発生しました</h1> + '<h1>:( 致命的な問題が発生しました。</h1>'
<p>お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります</p> + '<p>お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。</p>'
<hr> + '<hr>'
<p>エラーコード: ${e.toString()}</p> + `<p>エラーコード: ${e.toString()}</p>`
<p>ブラウザ バージョン: ${navigator.userAgent}</p> + `<p>ブラウザ バージョン: ${navigator.userAgent}</p>`
<p>クライアント バージョン: ${VERSION}</p> + `<p>クライアント バージョン: ${VERSION}</p>`
<hr> + '<hr>'
<p>問題が解決しない場合は上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください</p> + '<p>問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。</p>'
<p>Thank you for using Misskey.</p> + '<p>Thank you for using Misskey.</p>'
</div>`; + '</div>';
// TODO: Report the bug // TODO: Report the bug
} }