From ea1818284ba228dbdc6323877ca67cf293e706a8 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 1 Mar 2019 10:42:28 +0900 Subject: クライアントの設定コンポーネントを整理 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * デスクトップとモバイルで統一 * いくつかの設定を廃止 --- src/client/app/init.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/client/app/init.ts') diff --git a/src/client/app/init.ts b/src/client/app/init.ts index d13861080c..e85a249476 100644 --- a/src/client/app/init.ts +++ b/src/client/app/init.ts @@ -474,12 +474,9 @@ export default (callback: (launch: (router: VueRouter) => [Vue, MiOS], os: MiOS) app.$mount('#app'); //#region 更新チェック - const preventUpdate = os.store.state.device.preventUpdate; - if (!preventUpdate) { - setTimeout(() => { - checkForUpdate(app); - }, 3000); - } + setTimeout(() => { + checkForUpdate(app); + }, 3000); //#endregion return [app, os] as [Vue, MiOS]; -- cgit v1.2.3-freya