Merge pull request #134 from abdulsattar/master
Set window height as maximum height of div_resizer
This commit is contained in:
commit
d90235477c
|
@ -29,6 +29,7 @@
|
||||||
thisMousePos = mousePosition(e).y
|
thisMousePos = mousePosition(e).y
|
||||||
size = originalDivHeight + (originalPos - thisMousePos)
|
size = originalDivHeight + (originalPos - thisMousePos)
|
||||||
lastMousePos = thisMousePos
|
lastMousePos = thisMousePos
|
||||||
|
size = Math.min(size, $(window).height())
|
||||||
size = Math.max(min, size)
|
size = Math.max(min, size)
|
||||||
div.height size + "px"
|
div.height size + "px"
|
||||||
endDrag e,opts if size < min
|
endDrag e,opts if size < min
|
||||||
|
|
Loading…
Reference in New Issue