Commit 8db367ba by Masaru Abe

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

parent c55e31cf
...@@ -2721,6 +2721,11 @@ $("document").ready(function () { ...@@ -2721,6 +2721,11 @@ $("document").ready(function () {
} }
}, },
function (xmlHttpRequest, txtStatus, errorThrown) { function (xmlHttpRequest, txtStatus, errorThrown) {
//ページジャンプ設定をクリア
ClientData.JumpQueue([]);
ClientData.IsJumpBack(false);
if (xmlHttpRequest.status == 404) { if (xmlHttpRequest.status == 404) {
showAlertScreen(i18nText('msgContentNotExist'), ScreenIds.Home); showAlertScreen(i18nText('msgContentNotExist'), ScreenIds.Home);
} }
......
...@@ -93,6 +93,10 @@ function saveLoginInfo() { ...@@ -93,6 +93,10 @@ function saveLoginInfo() {
ClientData.userInfo_sid_local(userinfo_sid); ClientData.userInfo_sid_local(userinfo_sid);
saveServiceUserOption(); 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