mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-10 22:53:06 +08:00
Merge pull request #406 from okriuchykhin/ok_SCI_855
Fix compatibility of fixed samples table header and modal-tooltip [SCI-855]
This commit is contained in:
commit
1ae5e6f8a7
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ function dataTableInit() {
|
|||
table.on('mousedown', function() {
|
||||
$('#samples-columns-dropdown').removeClass('open');
|
||||
});
|
||||
// Fix compatibility of fixed table header and column names modal-tooltip
|
||||
// by removing overflow: hidden
|
||||
$('.dataTables_scrollHead').css('overflow', '');
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue