Commit 5a33db74 by Masaru Abe

Merge remote-tracking branch 'origin/feature/1.2.1' into feature/1.2.2

parents a6848708 531a6b54
...@@ -340,7 +340,13 @@ function getMediaType1(iValueObj) { ...@@ -340,7 +340,13 @@ function getMediaType1(iValueObj) {
var tempData = iValueObj.contentDataSub[i]; var tempData = iValueObj.contentDataSub[i];
if(tempData.resourceId == resourceId){ if(tempData.resourceId == resourceId){
resourceUrl = tempData.resourceUrl; resourceUrl = tempData.resourceUrl;
//DHカスタム
if( ClientData.serviceOpt_daihatsu() == 'Y'){
var apiUrl = getApiUrl(ClientData.userInfo_accountPath());
resourceUrl = resourceUrl + "?sid=" + ClientData.userInfo_sid() + "&apiurl=" + apiUrl ;
}
break; break;
} }
} }
...@@ -750,6 +756,11 @@ function getMediaType9(iValueObj) { ...@@ -750,6 +756,11 @@ function getMediaType9(iValueObj) {
if(tempData.resourceId == resourceId){ if(tempData.resourceId == resourceId){
resourceUrl = tempData.resourceUrl; resourceUrl = tempData.resourceUrl;
//DHカスタム
if( ClientData.serviceOpt_daihatsu() == 'Y'){
var apiUrl = getApiUrl(ClientData.userInfo_accountPath());
resourceUrl = resourceUrl + "?sid=" + ClientData.userInfo_sid() + "&apiurl=" + apiUrl ;
}
break; break;
} }
} }
......
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