Commit da4ca08b by Motohisa Nakano

Merge branch 'sbb' of gitlab.agentec.jp:abook_web/web-viewer into sbb

parents 5ddb83f1 e64e6977
......@@ -245,7 +245,9 @@ function getPageObjectsByPageIndex(contentData, nIndexPage) {
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = getMediaType1(currentPageObjects[nIndex]);
/*add object to page */
pageObjects.push(pageObject);
if ( pageObject != null ) {
pageObjects.push(pageObject);
}
} else if (currentPageObjects[nIndex].mediaType == 2) { /*mediaType = 2 */
var pageObject = getMediaType2(currentPageObjects[nIndex]);
/*add object to page */
......@@ -294,7 +296,11 @@ function getMediaType1(iValueObj) {
* Action Type = 10 : content
* Action Type = 11 : html
*/
if ( iValueObj.action != null ) {
if ( iValueObj.action.actionType == 10 || iValueObj.action.actionType == 11 || iValueObj.action.actionType == 12 || iValueObj.action.actionType == 13 ) {
return null;
}
}
var pageObject = [];
pageObject['mediaType'] = iValueObj.mediaType;
......
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