Commit 3d52b7db by Masaru Abe

セミコロン忘れ

parent 5390bdbc
......@@ -2092,7 +2092,7 @@ COMMON.LockScreen = function() {
var timeWaitLockScreen = COMMON.getTimeWaitLockScreen();
if (timeWaitLockScreen > 0) {
//var message = I18N.i18nText("sysInfoScrLock01");
SCREENLOCK.screenLock({
SCREENLOCK.screenLock({
timeout: timeWaitLockScreen,
html: '<img src="img/1222.png" alt="Screen Lock" /><br />', //+ message,
unlockFunc: COMMON.unlockFunction,
......@@ -2198,7 +2198,7 @@ COMMON.unlockFunction = function(inputPass) {
ClientData.serviceOpt_web_screen_lock(option.value);
}
else if (option.serviceName == 'web_screen_lock_wait') {
ClientData.serviceOpt_web_screen_lock_wait(option.value);
ClientData.serviceOpt_web_screen_lock_wait(option.value);
}
});
......@@ -2211,7 +2211,8 @@ COMMON.unlockFunction = function(inputPass) {
else {
errorCode = { errorMessage: "E001" };
}
});
}
);
if (result == true) {
......@@ -2292,7 +2293,7 @@ COMMON.SetEndLog = function(strContentId) {
};
// 1ページ分のページ閲覧ログを作成
COMMON.SetPageLog = function( strContentId, strPageNo ){
COMMON.SetPageLog = function(strContentId, strPageNo){
var arrContentLogs = ClientData.ContentLogData();
......@@ -2309,10 +2310,10 @@ COMMON.SetPageLog = function( strContentId, strPageNo ){
}
ClientData.ContentLogData(arrContentLogs);
}
};
// 1アクションのオブジェクトログを作成
COMMON.SetObjectLog = function( strContentId, objectLog ){
COMMON.SetObjectLog = function(strContentId, objectLog){
var arrContentLogs = ClientData.ContentLogData();
......@@ -2325,7 +2326,7 @@ COMMON.SetObjectLog = function( strContentId, objectLog ){
}
ClientData.ContentLogData(arrContentLogs);
}
};
// 前回の1アクションのオブジェクトログの利用時間を設定
COMMON.SetObjectLogActionTime = function( strContentId, objectId, actionTime ){
......@@ -2498,7 +2499,8 @@ COMMON.RegisterLog = function() {
else {
showSystemError();
}
});
}
);
};
if (avwHasError()) {
return;
......
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