Pascal Gloor před 5 roky
rodič
revize
6ef8a9eb08
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3
    3
      www/js/autodoc.js

+ 3
- 3
www/js/autodoc.js Zobrazit soubor

@@ -250,9 +250,9 @@ function page_load_document() {
conf.openapi + "/documents/" + docid,
function(doc) {
for(var i=0; i<doc.pageId.length; i++) {
var item = '<div><img src="" /></div>';
$(item).find('img').attr('src', conf.openapi + "/pages/" + doc.pageId[i] + "/image?maxWidth=100");
$('.autodoc_document_carousel').append(item);
$('.autodoc_document_carousel').append('<div><img /></div>');
$('.autodoc_document_carousel').children().last().children().attr('src',
conf.openapi + "/pages/" + doc.pageId[i] + "/image?maxWidth=100");
}
}
)

Načítá se…
Zrušit
Uložit