set window height as maximum height of div_resizer

This fixes the issue where a user can resize the div so that grippie is
no longer visible and is not reize the div back.
This commit is contained in:
Abdulsattar Mohammed 2013-02-12 13:56:37 +05:30
parent 4668cf1d54
commit c4eb5eee53
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@
thisMousePos = mousePosition(e).y
size = originalDivHeight + (originalPos - thisMousePos)
lastMousePos = thisMousePos
size = Math.min(size, $(window).height())
size = Math.max(min, size)
div.height size + "px"
endDrag e,opts if size < min