Resizable only resizes horizontally, not vertically?

Resizable only resizes horizontally, not vertically?

I mostly have resizable() working except I can't resize my element vertically, only horizontally.

My code is:

  1. $(el_id).resizable({
  2. handles: {'se': resize_id},
  3. minWidth: 100,
  4. minHeight: 100,
  5. maxWidth: 1000,
  6. maxHeight: 1000,
  7. containment: '#desktop',
  8. });

Any ideas what might be wrong?

Thanks