Resizable only resizes horizontally, not vertically?
I mostly have resizable() working except I can't resize my element vertically, only horizontally.
My code is:
- $(el_id).resizable({
- handles: {'se': resize_id},
- minWidth: 100,
- minHeight: 100,
- maxWidth: 1000,
- maxHeight: 1000,
- containment: '#desktop',
- });
Any ideas what might be wrong?
Thanks