Commit 9b78c046 by Masaru Abe

#15370 カスタムURI起動時、該当コンテンツが存在しない場合警告メッセージが表示されない

parent d4c5cce0
...@@ -150,7 +150,7 @@ ...@@ -150,7 +150,7 @@
"txtContentWarning":"警告", "txtContentWarning":"警告",
"txtMediaAutoPlayWarning":"メディアは自動再生されます。", "txtMediaAutoPlayWarning":"メディアは自動再生されます。",
"txtPreventLink": "プレビューにはこの機能が利用できません。", "txtPreventLink": "プレビューにはこの機能が利用できません。",
"msgContentNotExist": "コンテンツが存在しません。", "msgContentNotExist": "該当するコンテンツは存在しません。",
"txtShare": "共有", "txtShare": "共有",
"txtDashMark": "~", "txtDashMark": "~",
"txtUrlValidDate": "URL有効期間", "txtUrlValidDate": "URL有効期間",
......
...@@ -1258,7 +1258,7 @@ CONTENTVIEW_CREATEOBJECT.moveToContent = function (mediaType, actionType, id, im ...@@ -1258,7 +1258,7 @@ CONTENTVIEW_CREATEOBJECT.moveToContent = function (mediaType, actionType, id, im
}, },
function (xmlHttpRequest, txtStatus, errorThrown) { function (xmlHttpRequest, txtStatus, errorThrown) {
if (xmlHttpRequest.status == 404) { if (xmlHttpRequest.status == 404) {
showAlertScreen(I18N.i18nText('msgContentNotExist')); CONTENTVIEW.showAlertScreen(I18N.i18nText('msgContentNotExist'), null);
} }
else { else {
// Show system error // Show system error
......
...@@ -784,7 +784,8 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) { ...@@ -784,7 +784,8 @@ LOGIN.showContentViewByOpenUrl = function(strContentId) {
if( ClientData.isGetitsMode() == true ){ if( ClientData.isGetitsMode() == true ){
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login); AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Login);
} else { } else {
AVWEB.avwScreenMove("abvw/" + COMMON.ScreenIds.Home); //アラートメッセージ表示
LOGIN.showAlertScreen(I18N.i18nText('msgContentNotExist'),"abvw/" + COMMON.ScreenIds.Home);
} }
} }
); );
...@@ -821,6 +822,38 @@ LOGIN.getUrlPath = function(){ ...@@ -821,6 +822,38 @@ LOGIN.getUrlPath = function(){
} }
}; };
/* display alert screen*/
LOGIN.showAlertScreen = function(errMes, scrMove) {
// アラートメッセージの表示
if( errMes == undefined || errMes == "" ){
errMes = "message."; //I18N.i18nText('msgPageImgErr');
}
COMMON.lockLayout();
/* show error messages */
$().toastmessage({ position: 'middle-center' });
$().toastmessage('showToast', {
type: 'error',
sticky: true,
text: errMes,
close: function () {}
});
$('.toast-type-error').css('height', '100px');
$('.toast-type-error > p').css('padding-top', '35px');
$('.toast-item-close').live('click',
function () {
COMMON.unlockLayout();
if( scrMove ){
AVWEB.avwScreenMove(scrMove);
}
}
);
};
//$(document).ready(function (e) { //$(document).ready(function (e) {
LOGIN.ready = function(){ LOGIN.ready = function(){
......
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