mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 23:44:55 +08:00
Merge pull request #352 from okriuchykhin/ok_SCI_793
Hide dropdown when user interacts with samples table [SCI-793]
This commit is contained in:
commit
2fd7536039
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