Commit 2c2cc1e1 by Masaru Abe

スクリーンロック対応

parent 38bf701c
...@@ -2277,7 +2277,11 @@ COMMON.unlockFunction = function(inputPass) { ...@@ -2277,7 +2277,11 @@ COMMON.unlockFunction = function(inputPass) {
AVWEB.avwCmsApiSyncWithUrl(apiLoginUrl, null, 'webClientLogin', 'GET', params, AVWEB.avwCmsApiSyncWithUrl(apiLoginUrl, null, 'webClientLogin', 'GET', params,
function (data) { function (data) {
if (data.result == 'success') { if (data.result == 'success') {
ClientData.userInfo_sid(data.sid); ClientData.userInfo_sid(data.sid);
ClientData.userInfo_sid_local(data.sid);
//バックアップにも保持
ClientData.userInfo_sid_local_bak(data.sid);
result = true; result = true;
//forceUnlockFunc(); //forceUnlockFunc();
...@@ -2307,9 +2311,15 @@ COMMON.unlockFunction = function(inputPass) { ...@@ -2307,9 +2311,15 @@ COMMON.unlockFunction = function(inputPass) {
if (result == true) { if (result == true) {
if (window.CONTENTVIEW_EVENTS) { //ビューア画面ならイベントのアンロック
CONTENTVIEW_EVENTS.onUnlock(); if ($("#viewer").length) {
} //表示状態か
if( $('#viewer').is(':visible')){
if (window.CONTENTVIEW_EVENTS) {
CONTENTVIEW_EVENTS.onUnlock();
}
}
}
} }
return { 'result': result, 'errorCode': errorCode, 'newTimeout': COMMON.getTimeWaitLockScreen() }; return { 'result': result, 'errorCode': errorCode, 'newTimeout': COMMON.getTimeWaitLockScreen() };
}; };
......
...@@ -1409,7 +1409,10 @@ CONTENTVIEW_CREATEOBJECT.createPwdRequiredTypeDialog = function(){ ...@@ -1409,7 +1409,10 @@ CONTENTVIEW_CREATEOBJECT.createPwdRequiredTypeDialog = function(){
ClientData.JumpQueue(dataJump); ClientData.JumpQueue(dataJump);
// update sid id // update sid id
ClientData.userInfo_sid(data.sid); ClientData.userInfo_sid(data.sid);
ClientData.userInfo_sid_local(data.sid);
//バックアップにも保持
ClientData.userInfo_sid_local_bak(data.sid);
if(ClientData.isStreamingMode()){ if(ClientData.isStreamingMode()){
//ストリーミングのビューアへ移動 //ストリーミングのビューアへ移動
......
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