소스 검색

dev

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

+ 8
- 1
www/js/autodoc.js 파일 보기

@@ -172,7 +172,14 @@ function page_load_upload() {

function page_load_tags() {
// update tag list
$.getJSON(conf.openapi + "/tags", function(data) {
$.getJSON(conf.openapi + "/tags", function(tags) {
$.each(tags, function(n, tag) {
$('.autodoc_tag_list').append(
'<option data="' + tag.color + '" value="' + tag.id + '">' +
tag.name +
'</option>'
);
});
console.log(data);
}
);

Loading…
취소
저장