Commit c9d68471 by Masaru Abe

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

parent 87ad51c7
......@@ -45,15 +45,15 @@ CONTENTVIEW_EVENTS.handleAddMemo = function(event) {
}
//End Function : No.4
//Start Function : No.4
if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
CONTENTVIEW.drawMemoOnScreen(1);
}
if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
CONTENTVIEW.drawMemoOnScreen(2);
}
//End Function : No.4
////Start Function : No.4
//if(CONTENTVIEW_GETDATA.getContent().hasNextPage()){
// CONTENTVIEW.drawMemoOnScreen(1);
//}
//
//if(CONTENTVIEW_GETDATA.getContent().hasPreviousPage()){
// CONTENTVIEW.drawMemoOnScreen(2);
//}
////End Function : No.4
//change class
$('#imgaddmemo').removeClass();
$('#imgaddmemo').addClass('memoAdd');
......@@ -387,8 +387,7 @@ CONTENTVIEW_EVENTS.firstPage_click = function() {
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(),
{ contentId: CONTENTVIEW_GENERAL.contentID, sid: ClientData.userInfo_sid(), pageNo: 1 },
function (data) {
......@@ -463,8 +462,7 @@ CONTENTVIEW_EVENTS.lastPage_click = function() {
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(),
{ contentId: CONTENTVIEW_GENERAL.contentID, sid: ClientData.userInfo_sid(), pageNo: CONTENTVIEW_GENERAL.totalPage },
function (data) {
......@@ -684,7 +682,7 @@ CONTENTVIEW_EVENTS.update3DImagesArr = function(){
var tempX = object3d["x"];
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++){
var url = temp3dview[j];
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