Having an issue with the Jquery UI Resizable functionality.
I've implemented Jquery resizable to adjust a div's width and height dynamically. It's been working well, but I'm encountering a problem when attempting to decrease the height significantly below a certain aspect ratio.
`
$( 'divname' ).resizable({
minHeight: 1
});
` Despite setting the minHeight to just 1 pixel in the code above, I find that the div cannot be resized to less than 10px. Any suggestions on how to address this issue?