Commit baee790f by Masaru Abe

#13758 コンテンツ起動時にエラー発生

parent 5e76abd9
...@@ -2715,7 +2715,25 @@ $("document").ready(function () { ...@@ -2715,7 +2715,25 @@ $("document").ready(function () {
} }
} }
}, },
null); function (xmlHttpRequest, txtStatus, errorThrown) {
//ページジャンプ設定をクリア
ClientData.JumpQueue([]);
ClientData.IsJumpBack(false);
if (xmlHttpRequest.status == 404) {
showAlertScreen(i18nText('msgContentNotExist'), ScreenIds.Home);
}
else if(xmlHttpRequest.status == 403) {
//認証エラー
showAlertScreen(i18nText('sysErrorCallApi02'), ScreenIds.Home);
}
else {
// Show system error
showSystemError();
}
}
);
//END TRB00048 - EDITOR : Long - Date : 09/18/2013 - Summary : Fix Jumpcontent //END TRB00048 - EDITOR : Long - Date : 09/18/2013 - Summary : Fix Jumpcontent
//End Function : No.12 //End Function : No.12
}); });
......
...@@ -78,6 +78,10 @@ LOGIN.saveLoginInfo = function() { ...@@ -78,6 +78,10 @@ LOGIN.saveLoginInfo = function() {
ClientData.userInfo_sid_local(LOGIN.userinfo_sid); ClientData.userInfo_sid_local(LOGIN.userinfo_sid);
LOGIN.saveServiceUserOption(); LOGIN.saveServiceUserOption();
//ページジャンプ設定をクリア
ClientData.JumpQueue([]);
ClientData.IsJumpBack(false);
}; };
//Check validation //Check validation
......
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