浏览代码

add tags button

master
Pascal Gloor 5 年前
父节点
当前提交
4322c59267
共有 2 个文件被更改,包括 9 次插入1 次删除
  1. 3
    1
      www/index.html
  2. 6
    0
      www/js/autodoc.js

+ 3
- 1
www/index.html 查看文件

@@ -172,7 +172,9 @@
<tr>
<th scope="row">
Tags
<button type="button" class="btn btn-outline-primary btn-sm">Add</button>
<button type="button" class="autodoc_home_modal_tags_show btn btn-outline-primary btn-sm">Add</button>
<input type="text" class="d-none form-control typeahead autodoc_home_modal_tags_add" autocomplete="off"
data-provide="typeahead">
</th>
<td class="autodoc_home_modal_tags">
</td>

+ 6
- 0
www/js/autodoc.js 查看文件

@@ -79,6 +79,12 @@ $(document).ready(function () {
document_update_name(docid, $(e.target).val(), docid);
});

// modal show typeahead
$('.autodoc_home_modal_tags_show').click(function(e) {
$('.autodoc_home_modal_tags_show').addClass('d-none');
$('.autodoc_home_modal_tags_add').removeClass('d-none');
})

// tag menu select
$('.autodoc_tag_list').change(function (e) {
console.log(e);

正在加载...
取消
保存