Pascal Gloor hace 5 años
padre
commit
27745a3176
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. 8
    1
      www/js/autodoc.js

+ 8
- 1
www/js/autodoc.js Ver fichero

@@ -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);
}
);

Cargando…
Cancelar
Guardar