소스 검색

fixed

master
Pascal Gloor 5 년 전
부모
커밋
bffc25c946
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      www/js/autodoc.js

+ 3
- 3
www/js/autodoc.js 파일 보기

@@ -299,11 +299,11 @@ function page_load_document(args) {

$(item).data('pageid', doc.pageId[i]);
$(item).click(function(e) {
var pageid = $(e.target).parent().data('pageid');
$('.autodoc_document_image').attr('src',
conf.openapi + "/pages/" + $(e.target).parent().data('pageid') + "/image"
conf.openapi + "/pages/" + pageid + "/image"
);
$('.autodoc_document_image').data('pageid', doc.pageId[i]);
console.log("new pageid", $('.autodoc_document_image').data('pageid'));
$('.autodoc_document_image').data('pageid', pageid);
});
$('.autodoc_document_carousel').append(item);


Loading…
취소
저장