Commit 0c50228a by Masaru Abe

#10735 PDF以外のコンテンツでしおり登録して一覧で見ると、内容のところにコンテンツ名が表示される

parent 4c0f72a6
...@@ -305,13 +305,16 @@ function ShowBookmark() { ...@@ -305,13 +305,16 @@ function ShowBookmark() {
contentTitleKana = collection_contents[nIndex2].contentTitleKana; contentTitleKana = collection_contents[nIndex2].contentTitleKana;
contentType = collection_contents[nIndex2].contentType; contentType = collection_contents[nIndex2].contentType;
// Search in pages if(contentType == COMMON.ContentTypeKeys.Type_PDF){
for (var nIndex3 = 0; nIndex3 < collection_contents[nIndex2].pages.length; nIndex3++) { // Search in pages
if (pageNo == collection_contents[nIndex2].pages[nIndex3].pageNo) { for (var nIndex3 = 0; nIndex3 < collection_contents[nIndex2].pages.length; nIndex3++) {
pageDetail = collection_contents[nIndex2].pages[nIndex3]; if (pageNo == collection_contents[nIndex2].pages[nIndex3].pageNo) {
break; pageDetail = collection_contents[nIndex2].pages[nIndex3];
break;
}
} }
} }
} }
} }
if (pageDetail) { if (pageDetail) {
......
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