[jQuery] Bug in Block-UI jQuery plugin

[jQuery] Bug in Block-UI jQuery plugin


Hi,
I just found a bug on the Block-UI jQuery plugin. I'm using it to
block a div on a component I'm developing but the problem is that the
<div> has overflow: auto and max-height: 200px; so that the content
inside it don't make it too big and be scrollable.
The problem is that the overlay that block-ui creates is just 200px in
height, so if we scroll down the content is still accessible.
This is the CSS of the div I'm trying to block:
div {
overflow: auto;
height: auto !important;
height: 200px;
max-height: 200px;
/* colors and other stuff */
}
(the solution I'm using for now is just change overflow to 'hidden'
prior to block the div)