parent
e893dbf37a
commit
ac9a269209
|
@ -13,7 +13,6 @@
|
||||||
|
|
||||||
// ブロックの中に入れないと、定義した変数がブラウザのグローバルスコープに登録されてしまい邪魔なので
|
// ブロックの中に入れないと、定義した変数がブラウザのグローバルスコープに登録されてしまい邪魔なので
|
||||||
(async () => {
|
(async () => {
|
||||||
console.log('init!!')
|
|
||||||
window.onerror = (e) => {
|
window.onerror = (e) => {
|
||||||
renderError('SOMETHING_HAPPENED', e.toString());
|
renderError('SOMETHING_HAPPENED', e.toString());
|
||||||
};
|
};
|
||||||
|
@ -60,7 +59,6 @@
|
||||||
: '';
|
: '';
|
||||||
|
|
||||||
import(`/assets/${CLIENT_ENTRY}${salt}`)
|
import(`/assets/${CLIENT_ENTRY}${salt}`)
|
||||||
.then(({ default: startApp }) => startApp())
|
|
||||||
.catch(async () => {
|
.catch(async () => {
|
||||||
await checkUpdate();
|
await checkUpdate();
|
||||||
renderError('APP_FETCH_FAILED');
|
renderError('APP_FETCH_FAILED');
|
||||||
|
|
|
@ -40,8 +40,6 @@ import { reactionPicker } from '@/scripts/reaction-picker';
|
||||||
import { getUrlWithoutLoginId } from '@/scripts/login-id';
|
import { getUrlWithoutLoginId } from '@/scripts/login-id';
|
||||||
import { getAccountFromId } from '@/scripts/get-account-from-id';
|
import { getAccountFromId } from '@/scripts/get-account-from-id';
|
||||||
|
|
||||||
export default async function() {
|
|
||||||
|
|
||||||
console.info(`Misskey v${version}`);
|
console.info(`Misskey v${version}`);
|
||||||
|
|
||||||
if (_DEV_) {
|
if (_DEV_) {
|
||||||
|
@ -426,5 +424,3 @@ if ($i) {
|
||||||
signout();
|
signout();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue