mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 12:38:30 +08:00
Merge pull request #2266 from okriuchykhin/ok_SCI_4145
Fix issue with clone & move task to another experiment [SCI-4145]
This commit is contained in:
commit
71cb4bf6f6
1 changed files with 2 additions and 2 deletions
|
@ -700,7 +700,7 @@ function bindFullZoomAjaxTabs() {
|
|||
} else if (targetContents === "users") {
|
||||
initUsersEditLink(parentNode);
|
||||
} else if (targetContents === "comments") {
|
||||
|
||||
|
||||
}
|
||||
|
||||
$this.parents("ul").parent().find(".active").removeClass("active");
|
||||
|
@ -2286,7 +2286,7 @@ function updateFormWithModulesData(modules, connections, gridDistX, gridDistY) {
|
|||
positionsVal += id + "," + x + "," + y + ";";
|
||||
moduleGroupNames[id] = module.attr("data-module-group-name");
|
||||
});
|
||||
positionsDiv.attr("value", positionsDiv.val() + positionsVal);
|
||||
positionsDiv.attr("value", positionsVal + positionsDiv.val());
|
||||
|
||||
if (moduleNamesDiv.val())
|
||||
moduleNamesDiv.attr("value", JSON.stringify($.extend(JSON.parse(moduleNamesDiv.val()),
|
||||
|
|
Loading…
Reference in a new issue