mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
Fix row selecton after column reorder in repositories [SCI-1341]
This commit is contained in:
parent
5ac0ed4505
commit
aa42ca6b8b
1 changed files with 4 additions and 0 deletions
|
@ -197,6 +197,10 @@ function dataTableInit() {
|
|||
$(this).parent().find('.repository-row-selector').trigger('click');
|
||||
});
|
||||
|
||||
table.on('column-reorder', function() {
|
||||
initRowSelection();
|
||||
});
|
||||
|
||||
$('#assignRepositories, #unassignRepositories').click(function() {
|
||||
animateLoading();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue