mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-29 03:01:58 +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,23 +873,21 @@ 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"),
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
success: function(data){
|
||||
task.find(".edit-tags-link")
|
||||
.html(data.html_canvas);
|
||||
},
|
||||
error: function(data){
|
||||
// TODO
|
||||
}
|
||||
})
|
||||
// Load HTML
|
||||
$.ajax({
|
||||
url: task.attr("data-module-tags-url"),
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
success: function(data){
|
||||
task.find(".edit-tags-link")
|
||||
.html(data.html_canvas);
|
||||
},
|
||||
error: function(data){
|
||||
// TODO
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue