Code conundrum:
var dragHeight = window.innerHeight - parseInt(jQuery("#drag_area").css("margin-top")) - 5;
. It sets the drag height based on browser size, but there's a glitch. If I start with a non-maximized browser and then maximize it, the drag height remains unchanged from before and restricts dragging to the bottom of the screen. Any solutions would be greatly appreciated. Thanks!