@@ -305,8 +305,8 @@ | |||
<tr> | |||
<th>4. Confirm</th> | |||
<td> | |||
<button type="button" class="btn btn-outline-primary">Add/Update Tag</button> | |||
<button type="button" class="btn btn-outline-danger">Delete Tag</button> | |||
<button type="button" class="autodoc_tag_add btn btn-outline-primary">Add/Update Tag</button> | |||
<button type="button" class="autodoc_tag_delete btn btn-outline-danger">Delete Tag</button> | |||
</td> | |||
</tr> | |||
</table> |
@@ -172,10 +172,10 @@ function page_load_upload() { | |||
function page_load_tags() { | |||
// update tag list | |||
$.getJSON( | |||
conf.openapi + | |||
"/tags" | |||
) | |||
$.getJSON(conf.openapi + "/tags", function(data) { | |||
console.log(data); | |||
} | |||
); | |||
} | |||
function document_load() { |