| @@ -109,7 +109,7 @@ $(document).ready(function () { | |||
| } | |||
| }); | |||
| // tag add button | |||
| // tags add button | |||
| $('.autodoc_tag_add').click(function (e) { | |||
| var tagId = $('.autodoc_tag_id').val(); | |||
| var tagName = $('.autodoc_tag_text').val(); | |||
| @@ -148,7 +148,7 @@ $(document).ready(function () { | |||
| } | |||
| }); | |||
| // tag add color events | |||
| // tags add color events | |||
| $('.autodoc_tag_color').click(function (e) { | |||
| var btn = e.target; | |||
| while ($(btn).prop("tagName") != "BUTTON") { | |||
| @@ -290,7 +290,9 @@ function document_load() { | |||
| ); | |||
| $(col).find(".autodoc_template_home_img").data("documentId", doc.id); | |||
| $(col).find(".autodoc_template_home_img").on('click', function (e) { | |||
| home_modal_open($(e.target).data("documentId")); | |||
| $('autodoc_tab_document').data('docid') = $(e.target).data("documentId"); | |||
| window.location('#document'); | |||
| // home_modal_open($(e.target).data("documentId")); | |||
| }); | |||
| $(col) | |||