summaryrefslogtreecommitdiff
path: root/src/client/app/init.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-03-01 10:42:28 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-03-01 10:42:28 +0900
commitea1818284ba228dbdc6323877ca67cf293e706a8 (patch)
treeed9c1237520a8cdcc6fe9f28600b7341ed75dc23 /src/client/app/init.ts
parent文字サイズを設定できるように (diff)
downloadsharkey-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.ts9
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];