diff --git a/.gitignore b/.gitignore index b80b4b5..6f209f7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ *.pyc *.egg-info dist/* +build/* .tox/ venv pytest-reports diff --git a/changelog.rst b/changelog.rst index 9b29bb4..3b92d85 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,10 +1,11 @@ Changelog --------- -0.1.35 released +0.1.35 released 2018-01-05 ========================== - - ? + - fix CSS collision in tr classes with Bootstrap + - change multiselect to use body as the container for the multiselect list 0.1.34 released 2017-08-25 ========================== diff --git a/webgrid/static/webgrid.js b/webgrid/static/webgrid.js index 04ead06..e1cef4a 100644 --- a/webgrid/static/webgrid.js +++ b/webgrid/static/webgrid.js @@ -61,6 +61,7 @@ function datagrid_activate_mselect_ui(jq_select) { jq_select.siblings('.ms-parent').show(); } else { jq_select.multipleSelect({ + container: 'body', onOpen: function() { $('.ms-drop input').show(); },