mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-11 17:36:13 +08:00
Hide dropdown when user interacts with samples table [SCI-793]
This commit is contained in:
parent
e5a0ad9b23
commit
9f439cf183
1 changed files with 3 additions and 0 deletions
|
@ -138,6 +138,9 @@ function dataTableInit() {
|
||||||
table.column(i).visible(visibility);
|
table.column(i).visible(visibility);
|
||||||
}
|
}
|
||||||
oSettings._colReorder.fnOrder(myData.ColReorder);
|
oSettings._colReorder.fnOrder(myData.ColReorder);
|
||||||
|
table.on('mousedown', function() {
|
||||||
|
$('#samples-columns-dropdown').removeClass('open');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue