Commit d1a5398f by Masaru Abe

日比谷対応

parent 98db55b3
...@@ -180,13 +180,13 @@ var Keys = { ...@@ -180,13 +180,13 @@ var Keys = {
// Session :事業者オプション(serviceOpt)_スクリーンロック待ち時間:Interger // Session :事業者オプション(serviceOpt)_スクリーンロック待ち時間:Interger
serviceOpt_web_screen_lock_wait: 'web_screen_lock_wait', serviceOpt_web_screen_lock_wait: 'web_screen_lock_wait',
// Session :事業者オプション(serviceOpt)_GPS使用可:Char(Y:可能, N:不可) // Session :事業者オプション(serviceOpt)_GPS使用可:Char(Y:可能, N:不可)
serviceOpt_catalog_edition: 'usable_readinglog_gps', serviceOpt_usable_readinglog_gps: 'usable_readinglog_gps',
// Session :事業者オプション(serviceOpt)_詳細ログ使用可:Char(Y:可能, N:不可) // Session :事業者オプション(serviceOpt)_詳細ログ使用可:Char(Y:可能, N:不可)
serviceOpt_catalog_edition: 'usable_readinglog_object', serviceOpt_usable_readinglog_object: 'usable_readinglog_object',
// Session :事業者オプション(serviceOpt)_カタログエディション:Char(Y:可能, N:不可) // Session :事業者オプション(serviceOpt)_カタログエディション:Char(Y:可能, N:不可)
serviceOpt_catalog_edition: 'catalog_edition', serviceOpt_catalog_edition: 'catalog_edition',
// Session :事業者オプション(serviceOpt)_日比谷カスタム:Char(Y:可能, N:不可) // Session :事業者オプション(serviceOpt)_日比谷カスタム:Char(Y:可能, N:不可)
serviceOpt_catalog_edition: 'hibiyakadan_catalog', serviceOpt_hibiyakadan_catalog: 'hibiyakadan_catalog',
// Session :共通(common)_コンテンツID:Integer // Session :共通(common)_コンテンツID:Integer
common_contentId: 'common_contentId', common_contentId: 'common_contentId',
...@@ -381,7 +381,22 @@ function PageLogEntity(){ ...@@ -381,7 +381,22 @@ function PageLogEntity(){
this.readingEndDate = null; this.readingEndDate = null;
this.readingTime = 0; this.readingTime = 0;
}; };
// Entity for ObjectLog
function ObjectLogEntity(){
this.contentid = "";
this.actionDate = new Date();
this.pageNo = 1;
this.objectId = "";
this.resourceId = "";
this.mediaType = "";
this.actionType = "";
this.actionValue = "";
this.actionTime = "0";
this.locationX = "";
this.locationY = "";
this.locationHeight = "";
this.locationWidth = "";
};
// No.17 Phase 2: do not use this function // No.17 Phase 2: do not use this function
// Build memo/marking/bookmark to base64string // Build memo/marking/bookmark to base64string
...@@ -2311,9 +2326,7 @@ function SetStartLog(strContentId) { ...@@ -2311,9 +2326,7 @@ function SetStartLog(strContentId) {
// Set 1 second // Set 1 second
curr1.setSeconds(curr.getSeconds() + 1); curr1.setSeconds(curr.getSeconds() + 1);
log.readingEndDate = curr1; log.readingEndDate = curr1;
// Reading time // Reading time
log.readingTime = log.readingEndDate.subtractBySeconds(log.readingStartDate); log.readingTime = log.readingEndDate.subtractBySeconds(log.readingStartDate);
...@@ -2335,7 +2348,7 @@ function SetEndLog(strContentId) { ...@@ -2335,7 +2348,7 @@ function SetEndLog(strContentId) {
//abe pageLogもセット //abe pageLogもセット
//var log = new LogEntity(); 無駄? //var log = new LogEntity(); //無駄なのでコメント
var arrContentLogs = ClientData.ContentLogData(); var arrContentLogs = ClientData.ContentLogData();
for(var nIndex = 0; nIndex < arrContentLogs.length; nIndex++) { for(var nIndex = 0; nIndex < arrContentLogs.length; nIndex++) {
...@@ -2353,6 +2366,7 @@ function SetEndLog(strContentId) { ...@@ -2353,6 +2366,7 @@ function SetEndLog(strContentId) {
ClientData.ContentLogData(arrContentLogs); ClientData.ContentLogData(arrContentLogs);
}; };
// 1ページ分のページ閲覧ログを作成
function SetPageLog( strContentId, strPageNo ){ function SetPageLog( strContentId, strPageNo ){
var arrContentLogs = ClientData.ContentLogData(); var arrContentLogs = ClientData.ContentLogData();
...@@ -2372,6 +2386,24 @@ function SetPageLog( strContentId, strPageNo ){ ...@@ -2372,6 +2386,24 @@ function SetPageLog( strContentId, strPageNo ){
} }
// 1アクションのオブジェクトログを作成
function SetObjectLog( strContentId, objectLog ){
var arrContentLogs = ClientData.ContentLogData();
for(var nIndex = 0; nIndex < arrContentLogs.length; nIndex++) {
if(arrContentLogs[nIndex].contentid == strContentId) {
//ObjectLog追加
arrContentLogs[nIndex].objectLogArray.push(objectLog);
}
}
ClientData.ContentLogData(arrContentLogs);
}
/* /*
Register reading log of content to server by calling api Register reading log of content to server by calling api
*/ */
...@@ -2384,16 +2416,20 @@ function RegisterLog() { ...@@ -2384,16 +2416,20 @@ function RegisterLog() {
var dateStart = new Date(arrContentLogs[nIndex].readingStartDate); var dateStart = new Date(arrContentLogs[nIndex].readingStartDate);
//ページログJSONデータの作成 //ページログJSONデータの作成
var pageLogJson = "";
var objectLogJson = "";
if( ClientData.serviceOpt_usable_readinglog_object() == 'Y' ){
var pageLogArray = arrContentLogs[nIndex].pageLogArray; var pageLogArray = arrContentLogs[nIndex].pageLogArray;
var lines = []; //詳細ログオプションが有効ならページ閲覧ログデータ作成
if( pageLogArray.length > 0 ){ if( pageLogArray.length > 0 ){
var lines = [];
//終了時間と閲覧時間の設定 //終了時間と閲覧時間の設定
var pageLogStart; var pageLogStart;
var pageLogEnd; var pageLogEnd;
//2レコード目からチェック //2レコード目からチェック
for (var nIndex2 = 1; nIndex2 < pageLogArray.length; nIndex2++) { for (var nIndex2 = 1; nIndex2 < pageLogArray.length; nIndex2++) {
//一つ前のログの終了日時を次のレコードの開始日時でセット //一つ前のログの終了日時がnullなら次のレコードの開始日時をセット
if( pageLogArray[nIndex2 -1].readingEndDate == null ){ if( pageLogArray[nIndex2 -1].readingEndDate == null ){
pageLogArray[nIndex2 -1].readingEndDate = pageLogArray[nIndex2].readingStartDate; pageLogArray[nIndex2 -1].readingEndDate = pageLogArray[nIndex2].readingStartDate;
} }
...@@ -2429,15 +2465,53 @@ function RegisterLog() { ...@@ -2429,15 +2465,53 @@ function RegisterLog() {
} }
//alert("PageLog Lines:" + JSON.stringify( lines ) ); //alert("PageLog Lines:" + JSON.stringify( lines ) );
}
var pageLogJson = "";
if( lines.length > 0 ){ if( lines.length > 0 ){
pageLogJson = "{ header:[\"pageNo\",\"readingStartDate\",\"readingEndDate\",\"readingTime\"],lines:"; pageLogJson = "{ header:[\"pageNo\",\"readingStartDate\",\"readingEndDate\",\"readingTime\"],lines:";
pageLogJson = pageLogJson + JSON.stringify( lines ); pageLogJson = pageLogJson + JSON.stringify( lines );
pageLogJson = pageLogJson + "}"; pageLogJson = pageLogJson + "}";
//alert("JSON:" + pageLogJson); //alert("JSON:" + pageLogJson);
} }
}
var objectLogArray = arrContentLogs[nIndex].objectLogArray;
//詳細ログオプションが有効ならページ閲覧ログデータ作成
if( objectLogArray.length > 0 ){
var lines = [];
var actionDate;
//JSONデータ作成
for (var nIndex2 = 0; nIndex2 < objectLogArray.length; nIndex2++) {
actionDate = new Date(objectLogArray[nIndex2].actionDate);
var line = [];
line.push(actionDate.jpDateTimeString1());
line.push(objectLogArray[nIndex2].pageNo);
line.push(objectLogArray[nIndex2].objectId);
line.push(objectLogArray[nIndex2].resourceId);
line.push(objectLogArray[nIndex2].mediaType);
line.push(objectLogArray[nIndex2].actionType);
line.push(objectLogArray[nIndex2].actionValue);
line.push(objectLogArray[nIndex2].actionTime);
line.push(objectLogArray[nIndex2].locationX);
line.push(objectLogArray[nIndex2].locationY);
line.push(objectLogArray[nIndex2].locationHeight);
line.push(objectLogArray[nIndex2].locationWidth);
lines.push(line);
//alert("ObjectLog Line:" + JSON.stringify( line ) );
}
//alert("ObjectLog Lines:" + JSON.stringify( lines ) );
if( lines.length > 0 ){
objectLogJson = "{ header:[\"actionDate\",\"pageNo\",\"objectId\",\"resourceId\",\"mediaType\",\"actionType\",\"actionValue\",\"actionTime\",\"locationX\",\"locationY\",\"locationHeight\",\"locationWidth\"],";
objectLogJson = objectLogJson + "lines:";
objectLogJson = objectLogJson + JSON.stringify( lines );
objectLogJson = objectLogJson + "}";
//alert("JSON:" + objectLogJson);
}
}
}
var params = { var params = {
sid: ClientData.userInfo_sid(), sid: ClientData.userInfo_sid(),
...@@ -2446,7 +2520,8 @@ function RegisterLog() { ...@@ -2446,7 +2520,8 @@ function RegisterLog() {
readingEndDate: dateEnd.jpDateTimeString1(), readingEndDate: dateEnd.jpDateTimeString1(),
readingTime: arrContentLogs[nIndex].readingTime, readingTime: arrContentLogs[nIndex].readingTime,
deviceTypeId: 4, deviceTypeId: 4,
pageLog: pageLogJson pageLog: pageLogJson,
objectLog: objectLogJson
}; };
avwCmsApiSync(ClientData.userInfo_accountPath(), "contentReadingLog", 'post', params, avwCmsApiSync(ClientData.userInfo_accountPath(), "contentReadingLog", 'post', params,
null, null,
......
...@@ -2,17 +2,16 @@ ...@@ -2,17 +2,16 @@
"apiUrl" : "http://web3.agentec.jp/acms/{0}/abvapi", "apiUrl" : "http://web3.agentec.jp/acms/{0}/abvapi",
"apiLoginUrl" : "http://web3.agentec.jp/acms/nuabvapi", "apiLoginUrl" : "http://web3.agentec.jp/acms/nuabvapi",
"apiResourceDlUrl" : "http://web3.agentec.jp/acms/{0}/dl", "apiResourceDlUrl" : "http://web3.agentec.jp/acms/{0}/dl",
"bookShelfCount": 15, "bookShelfCount" : 15,
"bookListCount" : 15, "bookListCount" : 15,
"screenlockTimeDefault" : 30, "screenlockTimeDefault" : 30,
"pushPageCount" : 5, "pushPageCount" : 5,
"pushTimePeriod" : 60, "pushTimePeriod" : 60,
"debug" : true, "debug" : true,
"loginPage" : "index.html", "loginPage" : "index.html",
"anonymousLoginFlg" : false, "anonymousLoginFlg" : true,
"anonymousLoginPath" : "abetest", "anonymousLoginPath" : "abetest3",
"anonymousLoginId" : "nologin", "anonymousLoginId" : "webuser",
"appName" : "ABookWebCL", "appName" : "ABookWebCL",
"appVersion" : "0.0.1" "appVersion" : "0.0.1"
} }
...@@ -1023,7 +1023,7 @@ function showErrorScreen() { ...@@ -1023,7 +1023,7 @@ function showErrorScreen() {
function changePage(page_index) { function changePage(page_index) {
//abe スライダーのページ移動 //abe スライダーのページ移動
alert("changePage:" + page_index); //alert("changePage:" + page_index);
// Make sure page_index is number // Make sure page_index is number
page_index = Number(page_index); page_index = Number(page_index);
...@@ -1045,6 +1045,10 @@ function changePage(page_index) { ...@@ -1045,6 +1045,10 @@ function changePage(page_index) {
} }
//End Function : No.4 - Editor : Long - Date : 08/19/2013 //End Function : No.4 - Editor : Long - Date : 08/19/2013
else{ else{
//ページ閲覧ログセット
SetPageLog( contentID, page_index);
// Clear canvas offscreen // Clear canvas offscreen
clearCanvas(document.getElementById("offscreen")); clearCanvas(document.getElementById("offscreen"));
...@@ -1924,8 +1928,10 @@ var isPendingContentBGM = false; ...@@ -1924,8 +1928,10 @@ var isPendingContentBGM = false;
function changePageWithoutSlide(pageMove) { function changePageWithoutSlide(pageMove) {
//abe 確認できない //abe コンテンツリンクで移動時
alert("changePageWithoutSlide:" + pageMove); alert("changePageWithoutSlide:" + pageMove);
//ページ閲覧ログセット
SetPageLog( contentID, pageMove);
disableAllControl(); disableAllControl();
var isExistBGMPageContent = false; var isExistBGMPageContent = false;
...@@ -2739,6 +2745,7 @@ ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -2739,6 +2745,7 @@ ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.visible, obj.visible,
obj.mediaFile, obj.mediaFile,
obj.media, obj.media,
obj.mediaResourceId,
obj.objectId obj.objectId
); );
} else if (obj.actionType == 2) { } else if (obj.actionType == 2) {
...@@ -2753,6 +2760,8 @@ ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -2753,6 +2760,8 @@ ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.height, obj.height,
obj.visible, obj.visible,
obj.audioFile, obj.audioFile,
obj.audio,
obj.audioResourceId,
obj.objectId obj.objectId
); );
} else if (obj.actionType == 3) { /*open new url */ } else if (obj.actionType == 3) { /*open new url */
...@@ -2783,6 +2792,7 @@ ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -2783,6 +2792,7 @@ ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.height, obj.height,
obj.visible, obj.visible,
obj.imagePreview, obj.imagePreview,
obj.imagePreviewResourceIds,
obj.objectId obj.objectId
); );
} else if (obj.actionType == 5) { /*jump page */ } else if (obj.actionType == 5) { /*jump page */
...@@ -2874,6 +2884,8 @@ ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -2874,6 +2884,8 @@ ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.replyLimit, obj.replyLimit,
obj.fullScreen, obj.fullScreen,
obj.saveAs, obj.saveAs,
obj.resourceId,
obj.enquete,
obj.objectId obj.objectId
); );
} }
...@@ -2908,6 +2920,7 @@ ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -2908,6 +2920,7 @@ ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.height, obj.height,
obj.visible, obj.visible,
obj.audioFile, obj.audioFile,
obj.audioResourceId,
obj.playType, obj.playType,
obj.objectId obj.objectId
); );
...@@ -3042,6 +3055,8 @@ ContentPage.prototype.addPageObjects = function (pageObjects) { ...@@ -3042,6 +3055,8 @@ ContentPage.prototype.addPageObjects = function (pageObjects) {
obj.replyLimit, obj.replyLimit,
obj.fullScreen, obj.fullScreen,
obj.saveAs, obj.saveAs,
obj.resourceId,
obj.enquete,
obj.objectId obj.objectId
); );
} }
......
...@@ -304,7 +304,7 @@ function nextPage_click() { ...@@ -304,7 +304,7 @@ function nextPage_click() {
if (getContent().hasNextPage()) { if (getContent().hasNextPage()) {
//abe //abe
alert("nextPage_click:" + contentID ); //alert("nextPage_click:" + contentID );
SetPageLog( contentID, getPageIndex() + 1); SetPageLog( contentID, getPageIndex() + 1);
playBGMOfContent(); playBGMOfContent();
...@@ -330,7 +330,7 @@ function prevPage_click() { ...@@ -330,7 +330,7 @@ function prevPage_click() {
if (getContent().hasPreviousPage()) { if (getContent().hasPreviousPage()) {
//abe //abe
alert("prevPage_click:" + contentID); //alert("prevPage_click:" + contentID);
SetPageLog( contentID, getPageIndex() - 1); SetPageLog( contentID, getPageIndex() - 1);
playBGMOfContent(); playBGMOfContent();
...@@ -359,7 +359,7 @@ function firstPage_click() { ...@@ -359,7 +359,7 @@ function firstPage_click() {
else{ else{
//abe //abe
alert("firstPage_click:" + contentID ); //alert("firstPage_click:" + contentID );
SetPageLog( contentID, 0 ); SetPageLog( contentID, 0 );
playBGMOfContent(); playBGMOfContent();
...@@ -430,7 +430,7 @@ function lastPage_click() { ...@@ -430,7 +430,7 @@ function lastPage_click() {
else{ else{
//abe //abe
alert("lastPage_click:" + contentID ); //alert("lastPage_click:" + contentID );
SetPageLog( contentID, totalPage - 1 ); SetPageLog( contentID, totalPage - 1 );
playBGMOfContent(); playBGMOfContent();
......
...@@ -165,13 +165,14 @@ function getMediaType1(iValueObj) { ...@@ -165,13 +165,14 @@ function getMediaType1(iValueObj) {
} }
/*get video file */ /*get video file */
if (iValueObj.action.video) { if (iValueObj.action.video) {
pageObject['mediaFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceName=" + removeExt(iValueObj.action.video); pageObject['mediaFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceName=" + removeExt(iValueObj.action.video);
pageObject['media'] = iValueObj.action.video; pageObject['media'] = iValueObj.action.video;
pageObject['mediaResourceId'] = iValueObj.action.resourceId;
} else { } else {
pageObject['mediaFile'] = ''; pageObject['mediaFile'] = '';
pageObject['media'] = ''; pageObject['media'] = '';
pageObject['mediaResourceId'] = '';
} }
} else if (iValueObj.action.actionType == 2) { } else if (iValueObj.action.actionType == 2) {
...@@ -190,8 +191,12 @@ function getMediaType1(iValueObj) { ...@@ -190,8 +191,12 @@ function getMediaType1(iValueObj) {
} else { } else {
pageObject['audioFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceName=" + removeExt(iValueObj.action.music); pageObject['audioFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceName=" + removeExt(iValueObj.action.music);
} }
pageObject['audio'] = iValueObj.action.music;
pageObject['audioResourceId'] = iValueObj.action.resourceId;
} else { } else {
pageObject['audioFile'] = ''; pageObject['audioFile'] = '';
pageObject['audio'] = "";
pageObject['audioResourceId'] = "";
} }
} else if (iValueObj.action.actionType == 3) { } else if (iValueObj.action.actionType == 3) {
...@@ -239,14 +244,15 @@ function getMediaType1(iValueObj) { ...@@ -239,14 +244,15 @@ function getMediaType1(iValueObj) {
/*get Image Preview */ /*get Image Preview */
var dataResourceImage = iValueObj.action.preview; var dataResourceImage = iValueObj.action.preview;
var dataImageFromResource = []; var dataImageFromResource = [];
pageObject['imagePreviewResourceIds'] = [];
//START TRB00077 - Editor : Long - Date: 09/24/2013- Summary : Display image preview no image //START TRB00077 - Editor : Long - Date: 09/24/2013- Summary : Display image preview no image
if(dataResourceImage){ if(dataResourceImage){
for (var nIndex = 0; nIndex < dataResourceImage.length; nIndex++) { for (var nIndex = 0; nIndex < dataResourceImage.length; nIndex++) {
dataImageFromResource.push(getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceName=" + removeExt(dataResourceImage[nIndex])); dataImageFromResource.push(getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceName=" + removeExt(dataResourceImage[nIndex]));
} }
pageObject['imagePreviewResourceIds'] = iValueObj.action.resourceIds;
} }
//END TRB00077 - Editor : Long - Date: 09/24/2013- Summary : Display image preview no image //END TRB00077 - Editor : Long - Date: 09/24/2013- Summary : Display image preview no image
pageObject['imagePreview'] = dataImageFromResource; pageObject['imagePreview'] = dataImageFromResource;
} else if (iValueObj.action.actionType == 5) { } else if (iValueObj.action.actionType == 5) {
...@@ -349,6 +355,8 @@ function getMediaType1(iValueObj) { ...@@ -349,6 +355,8 @@ function getMediaType1(iValueObj) {
pageObject["replyLimit"] = iValueObj.action.replyLimit; pageObject["replyLimit"] = iValueObj.action.replyLimit;
pageObject["fullScreen"] = iValueObj.action.fullScreen; pageObject["fullScreen"] = iValueObj.action.fullScreen;
pageObject["saveAs"] = iValueObj.action.saveAs; pageObject["saveAs"] = iValueObj.action.saveAs;
pageObject["resourceId"] = iValueObj.action.resourceId;
pageObject["enquete"] = iValueObj.action.enquete;
//pageObject["objectId"] = iValueObj.action.objectId; //pageObject["objectId"] = iValueObj.action.objectId;
} }
//End Function : No.9 - Editor : Long - Date: 08/16/2013 - Summary : //End Function : No.9 - Editor : Long - Date: 08/16/2013 - Summary :
...@@ -372,7 +380,7 @@ function getMediaType2(iValueObj) { ...@@ -372,7 +380,7 @@ function getMediaType2(iValueObj) {
/*get mediaInfo */ /*get mediaInfo */
if (iValueObj.mediaInfo.resourceId) { if (iValueObj.mediaInfo.resourceId) {
pageObject['mediaFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceId=" + iValueObj.mediaInfo.resourceId; pageObject['mediaFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceId=" + iValueObj.mediaInfo.resourceId;
pageObject['media'] = iValueObj.mediaInfo.resourceId; pageObject['media'] = iValueObj.mediaInfo.resourceId; //video1のほうはリソース名で取得している。IDのほうが良いのでは。
} else { } else {
pageObject['mediaFile'] = ''; pageObject['mediaFile'] = '';
pageObject['media'] = ''; pageObject['media'] = '';
...@@ -421,8 +429,10 @@ function getMediaType3(iValueObj) { ...@@ -421,8 +429,10 @@ function getMediaType3(iValueObj) {
} else { } else {
pageObject['audioFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceId=" + iValueObj.mediaInfo.resourceId; pageObject['audioFile'] = getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceId=" + iValueObj.mediaInfo.resourceId;
} }
pageObject['audioResourceId'] = iValueObj.mediaInfo.resourceId;
} else { } else {
pageObject['audioFile'] = ''; pageObject['audioFile'] = '';
pageObject['audioResourceId'] = '';
} }
/*get playtype */ /*get playtype */
...@@ -722,7 +732,7 @@ function getMediaType11(iValueObj) { ...@@ -722,7 +732,7 @@ function getMediaType11(iValueObj) {
//Get object Info //Get object Info
pageObject['mediaType'] = iValueObj.mediaType; pageObject['mediaType'] = iValueObj.mediaType;
pageObject['id'] = "MediaType9_" + iValueObj.mediaInfo.resourceId; pageObject['id'] = "MediaType11_" + iValueObj.mediaInfo.resourceId;
pageObject['actionType'] = iValueObj.action.actionType; pageObject['actionType'] = iValueObj.action.actionType;
//Get object Location //Get object Location
...@@ -744,7 +754,9 @@ function getMediaType11(iValueObj) { ...@@ -744,7 +754,9 @@ function getMediaType11(iValueObj) {
pageObject["replyLimit"] = iValueObj.action.replyLimit; pageObject["replyLimit"] = iValueObj.action.replyLimit;
pageObject["fullScreen"] = iValueObj.action.fullScreen; pageObject["fullScreen"] = iValueObj.action.fullScreen;
pageObject["saveAs"] = iValueObj.action.saveAs; pageObject["saveAs"] = iValueObj.action.saveAs;
pageObject["objectId"] = iValueObj.action.objectId; pageObject["resourceId"] = resourceId;
pageObject["enquete"] = iValueObj.action.enquete;
//pageObject["objectId"] = iValueObj.action.objectId;
} }
return pageObject; return pageObject;
......
...@@ -810,7 +810,9 @@ function initPushMessage() ...@@ -810,7 +810,9 @@ function initPushMessage()
); );
// check new push message // check new push message
if (isAnonymousLogin() == false ) {
getPushMessageNew(); getPushMessageNew();
}
}; };
// get time wait check new push message // get time wait check new push message
......
...@@ -195,6 +195,9 @@ $(document).ready(function () { ...@@ -195,6 +195,9 @@ $(document).ready(function () {
//カタログエディション対応判定 //カタログエディション対応判定
if( ClientData.serviceOpt_catalog_edition() == 'Y'){ if( ClientData.serviceOpt_catalog_edition() == 'Y'){
$('.tabUnit').hide(); $('.tabUnit').hide();
//センタリングするようサイズ調整
$('#main').width(660);
} else { } else {
$('.switchingTab .colright').hide(); $('.switchingTab .colright').hide();
} }
......
...@@ -603,6 +603,10 @@ function initLoginAnonymousUser() { ...@@ -603,6 +603,10 @@ function initLoginAnonymousUser() {
ClientData.serviceOpt_catalog_edition(option.value); ClientData.serviceOpt_catalog_edition(option.value);
} else if( option.serviceName == 'hibiyakadan_catalog' ) { } else if( option.serviceName == 'hibiyakadan_catalog' ) {
ClientData.serviceOpt_hibiyakadan_catalog(option.value); ClientData.serviceOpt_hibiyakadan_catalog(option.value);
} else if( option.serviceName == 'usable_readinglog_gps' ) {
ClientData.serviceOpt_usable_readinglog_gps(option.value);
} else if( option.serviceName == 'usable_readinglog_object' ) {
ClientData.serviceOpt_usable_readinglog_object(option.value);
} }
}); });
// hide splash screen then move to home page // hide splash screen then move to home page
......
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