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:
okriuchykhin 2017-01-13 15:56:37 +01:00 committed by GitHub
commit 1ae5e6f8a7

View file

@ -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', '');
}
});