mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-22 14:54:38 +08:00
Set timeout for loading manage column index modal to load after datatable redraw
This commit is contained in:
parent
98f7f6035c
commit
232209e64a
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