diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-01 10:42:28 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-01 10:42:28 +0900 |
| commit | ea1818284ba228dbdc6323877ca67cf293e706a8 (patch) | |
| tree | ed9c1237520a8cdcc6fe9f28600b7341ed75dc23 /src/client/app/init.ts | |
| parent | 文字サイズを設定できるように (diff) | |
| download | sharkey-ea1818284ba228dbdc6323877ca67cf293e706a8.tar.gz sharkey-ea1818284ba228dbdc6323877ca67cf293e706a8.tar.bz2 sharkey-ea1818284ba228dbdc6323877ca67cf293e706a8.zip | |
クライアントの設定コンポーネントを整理
* デスクトップとモバイルで統一
* いくつかの設定を廃止
Diffstat (limited to 'src/client/app/init.ts')
| -rw-r--r-- | src/client/app/init.ts | 9 |
1 files changed, 3 insertions, 6 deletions
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]; |