Commit 3d52b7db by Masaru Abe

セミコロン忘れ

parent 5390bdbc
...@@ -2211,7 +2211,8 @@ COMMON.unlockFunction = function(inputPass) { ...@@ -2211,7 +2211,8 @@ COMMON.unlockFunction = function(inputPass) {
else { else {
errorCode = { errorMessage: "E001" }; errorCode = { errorMessage: "E001" };
} }
}); }
);
if (result == true) { if (result == true) {
...@@ -2292,7 +2293,7 @@ COMMON.SetEndLog = function(strContentId) { ...@@ -2292,7 +2293,7 @@ COMMON.SetEndLog = function(strContentId) {
}; };
// 1ページ分のページ閲覧ログを作成 // 1ページ分のページ閲覧ログを作成
COMMON.SetPageLog = function( strContentId, strPageNo ){ COMMON.SetPageLog = function(strContentId, strPageNo){
var arrContentLogs = ClientData.ContentLogData(); var arrContentLogs = ClientData.ContentLogData();
...@@ -2309,10 +2310,10 @@ COMMON.SetPageLog = function( strContentId, strPageNo ){ ...@@ -2309,10 +2310,10 @@ COMMON.SetPageLog = function( strContentId, strPageNo ){
} }
ClientData.ContentLogData(arrContentLogs); ClientData.ContentLogData(arrContentLogs);
} };
// 1アクションのオブジェクトログを作成 // 1アクションのオブジェクトログを作成
COMMON.SetObjectLog = function( strContentId, objectLog ){ COMMON.SetObjectLog = function(strContentId, objectLog){
var arrContentLogs = ClientData.ContentLogData(); var arrContentLogs = ClientData.ContentLogData();
...@@ -2325,7 +2326,7 @@ COMMON.SetObjectLog = function( strContentId, objectLog ){ ...@@ -2325,7 +2326,7 @@ COMMON.SetObjectLog = function( strContentId, objectLog ){
} }
ClientData.ContentLogData(arrContentLogs); ClientData.ContentLogData(arrContentLogs);
} };
// 前回の1アクションのオブジェクトログの利用時間を設定 // 前回の1アクションのオブジェクトログの利用時間を設定
COMMON.SetObjectLogActionTime = function( strContentId, objectId, actionTime ){ COMMON.SetObjectLogActionTime = function( strContentId, objectId, actionTime ){
...@@ -2498,7 +2499,8 @@ COMMON.RegisterLog = function() { ...@@ -2498,7 +2499,8 @@ COMMON.RegisterLog = function() {
else { else {
showSystemError(); showSystemError();
} }
}); }
);
}; };
if (avwHasError()) { if (avwHasError()) {
return; 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