Browse Source

hmm

master
Pascal Gloor 5 years ago
parent
commit
db87384361
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      www/js/autodoc.js

+ 1
- 1
www/js/autodoc.js View File

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

Loading…
Cancel
Save