Commit c9d68471 by Masaru Abe

存在しないgetUrlParamメソッドの対応

parent 87ad51c7
...@@ -45,15 +45,15 @@ CONTENTVIEW_EVENTS.handleAddMemo = function(event) { ...@@ -45,15 +45,15 @@ CONTENTVIEW_EVENTS.handleAddMemo = function(event) {
} }
//End Function : No.4 //End Function : No.4
//Start Function : No.4 ////Start Function : No.4
if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){ //if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
CONTENTVIEW.drawMemoOnScreen(1); // CONTENTVIEW.drawMemoOnScreen(1);
} //}
//
if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){ //if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
CONTENTVIEW.drawMemoOnScreen(2); // CONTENTVIEW.drawMemoOnScreen(2);
} //}
//End Function : No.4 ////End Function : No.4
//change class //change class
$('#imgaddmemo').removeClass(); $('#imgaddmemo').removeClass();
$('#imgaddmemo').addClass('memoAdd'); $('#imgaddmemo').addClass('memoAdd');
...@@ -387,8 +387,7 @@ CONTENTVIEW_EVENTS.firstPage_click = function() { ...@@ -387,8 +387,7 @@ CONTENTVIEW_EVENTS.firstPage_click = function() {
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF){ if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF){
console.log("CONTENTVIEW_EVENTS.firstPage_click"); //console.log("CONTENTVIEW_EVENTS.firstPage_click");
AVWEB.avwGrabContentPageImage(ClientData.userInfo_accountPath(), AVWEB.avwGrabContentPageImage(ClientData.userInfo_accountPath(),
{ contentId: CONTENTVIEW_GENERAL.contentID, sid: ClientData.userInfo_sid(), pageNo: 1 }, { contentId: CONTENTVIEW_GENERAL.contentID, sid: ClientData.userInfo_sid(), pageNo: 1 },
function (data) { function (data) {
...@@ -463,8 +462,7 @@ CONTENTVIEW_EVENTS.lastPage_click = function() { ...@@ -463,8 +462,7 @@ CONTENTVIEW_EVENTS.lastPage_click = function() {
if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF){ if(CONTENTVIEW_GENERAL.contentType == COMMON.ContentTypeKeys.Type_PDF){
console.log("CONTENTVIEW_EVENTS.lastPage_click"); //console.log("CONTENTVIEW_EVENTS.lastPage_click");
AVWEB.avwGrabContentPageImage(ClientData.userInfo_accountPath(), AVWEB.avwGrabContentPageImage(ClientData.userInfo_accountPath(),
{ contentId: CONTENTVIEW_GENERAL.contentID, sid: ClientData.userInfo_sid(), pageNo: CONTENTVIEW_GENERAL.totalPage }, { contentId: CONTENTVIEW_GENERAL.contentID, sid: ClientData.userInfo_sid(), pageNo: CONTENTVIEW_GENERAL.totalPage },
function (data) { function (data) {
...@@ -684,7 +682,7 @@ CONTENTVIEW_EVENTS.update3DImagesArr = function(){ ...@@ -684,7 +682,7 @@ CONTENTVIEW_EVENTS.update3DImagesArr = function(){
var tempX = object3d["x"]; var tempX = object3d["x"];
var tempY = object3d["y"]; var tempY = object3d["y"];
tempInitImage = AVWEB.getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceId=" + getUrlParams(tempInitImage, 'resourceId'); tempInitImage = AVWEB.getURL("webResourceDownload") + "/?sid=" + ClientData.userInfo_sid() + "&resourceId=" + CONTENTVIEW_EVENTS.getUrlParamByUrl(tempInitImage, 'resourceId');
for(var j = 0; j< temp3dview.length; j++){ for(var j = 0; j< temp3dview.length; j++){
var url = temp3dview[j]; var url = temp3dview[j];
var id = CONTENTVIEW_EVENTS.getUrlParamByUrl(url, 'resourceId'); var id = CONTENTVIEW_EVENTS.getUrlParamByUrl(url, 'resourceId');
......
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