From 6b95dc7269203f2db2013631bb246d1af5e228a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Sun, 16 Dec 2018 01:24:14 +0900 Subject: [PATCH] Fix: focus --- src/game/login/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/login/login.js b/src/game/login/login.js index 4eb37c1..74024cc 100644 --- a/src/game/login/login.js +++ b/src/game/login/login.js @@ -47,7 +47,7 @@ var Login = { } } - if(sessionStorageManager.getMaestroID() === null || sessionStorageManager.getMaestroID() === -1) + if(sessionStorageManager.getMaestroID() === null || sessionStorageManager.getMaestroID() == -1) this.inputTextMaestroName.canvasInput.focus(); else this.inputTextName.canvasInput.focus();