mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 08:57:41 +08:00
Merge pull request #2396 from mlorb/ml-sci-4318
Set timeout for loading manage column index modal… [SCI-4318]
This commit is contained in:
commit
4a8bc20c3f
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ var RepositoryColumns = (function() {
|
|||
RepositoryDatatable.init('#' + $('.repository-table table').attr('id'));
|
||||
RepositoryDatatable.redrawTableOnSidebarToggle();
|
||||
// show manage columns index modal
|
||||
$(manageModal).find('.back-to-column-modal').trigger('click');
|
||||
setTimeout(function() {
|
||||
$(manageModal).find('.back-to-column-modal').trigger('click');
|
||||
}, 500);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue