mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-30 11:41:19 +08:00
Imrove tags update behaviour on canvas [SCI-2830]
This commit is contained in:
parent
380a96dcce
commit
b7ccfccfe0
1 changed files with 14 additions and 16 deletions
|
@ -873,10 +873,9 @@ function bindEditTagsAjax(elements) {
|
|||
|
||||
// Reload tags HTML element when modal is closed
|
||||
manageTagsModal.on("hide.bs.modal", function(){
|
||||
var tasks = $("div.panel");
|
||||
var task = $("div.panel[data-module-id='" +
|
||||
manageTagsModal.data('module-id') + "']");
|
||||
|
||||
tasks.each(function(){
|
||||
var task = $(this);
|
||||
// Load HTML
|
||||
$.ajax({
|
||||
url: task.attr("data-module-tags-url"),
|
||||
|
@ -889,7 +888,6 @@ function bindEditTagsAjax(elements) {
|
|||
error: function(data){
|
||||
// TODO
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue