Commit b6536a97 by Masaru Abe

pana対応 スクリーンロックがW002で解除できない場合はログイン画面に戻す

parent 4e2abfe3
......@@ -231,9 +231,15 @@ SCREENLOCK.screenLock = function(options) {
if (unlockFunc) {
var val = unlockFunc($('#passwd-txt').val(), forceUnlockFunc);
if (!val.result) {
$('#screenLockErrMsg').text(AVWEB.format(errorMessage, val.errorCode.errorMessage));
$('#screenLockErrMsg').fadeIn();
$('#passwd-txt').focus();
//pana対応 W002が返った場合は解除できないので強制的にログイン画面に遷移
if( val.errorCode.errorMessage == "W002" ){
AVWEB.showSystemError();
} else {
$('#screenLockErrMsg').text(AVWEB.format(errorMessage, val.errorCode.errorMessage));
$('#screenLockErrMsg').fadeIn();
$('#passwd-txt').focus();
}
return;
}
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment