Fix: maestro experience account type = 101

This commit is contained in:
2018-08-11 11:59:35 +09:00
parent a3bbeed499
commit e2c37b52d1
9 changed files with 62 additions and 13 deletions
+2 -2
View File
@@ -87,7 +87,7 @@ function checkMaestroIDName() {
}
function changeMaestroInfo() {
if(registeredAccountType === 0) {
if(registeredAccountType >= 100) {
showErrorMessage("체험 계정은 정보 수정이 불가능합니다.", "error");
return;
}
@@ -137,7 +137,7 @@ function changeMaestroInfo() {
}
function checkPassword() {
if(registeredAccountType === 0) {
if(registeredAccountType >= 100) {
showErrorMessage("체험 계정은 암호 수정이 불가능합니다.", "error");
$('html, body').animate({
scrollTop: $("#message_box").offset().top + 'px'