Commit 2ae22361 by Masaru Abe

スクリーンロック解除でJSエラー対応

parent 7ef63849
...@@ -2307,10 +2307,16 @@ COMMON.unlockFunction = function(inputPass) { ...@@ -2307,10 +2307,16 @@ COMMON.unlockFunction = function(inputPass) {
if (result == true) { if (result == true) {
//ビューア画面ならイベントのアンロック
if ($("#viewer").length) {
//表示状態か
if( $('#viewer').is(':visible')){
if (window.CONTENTVIEW_EVENTS) { if (window.CONTENTVIEW_EVENTS) {
CONTENTVIEW_EVENTS.onUnlock(); CONTENTVIEW_EVENTS.onUnlock();
} }
} }
}
}
return { 'result': result, 'errorCode': errorCode, 'newTimeout': COMMON.getTimeWaitLockScreen() }; return { 'result': result, 'errorCode': errorCode, 'newTimeout': COMMON.getTimeWaitLockScreen() };
}; };
......
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