| function home_modal_open(docid) { | function home_modal_open(docid) { | ||||
| $.getJSON(conf.openapi + "/documents/" + docid, function (data) { | $.getJSON(conf.openapi + "/documents/" + docid, function (data) { | ||||
| $('#autodoc_home_modal_body').data('document', data); | $('#autodoc_home_modal_body').data('document', data); | ||||
| home_modal_page(data.primaryPage); | |||||
| var pageNum; | |||||
| for (var i = 0; i < data.pageId.length(); i++) { | |||||
| if (data.pageId[i] == data.primaryPage) { | |||||
| pageNum = i; | |||||
| break; | |||||
| } | |||||
| } | |||||
| home_modal_page(pageNum); | |||||
| $('#autodoc_home_modal').modal('show'); | $('#autodoc_home_modal').modal('show'); | ||||
| }); | }); | ||||
| } | } |