[jQuery] Interface - Resizable by x pixels

[jQuery] Interface - Resizable by x pixels


Ok, i didnt see it in the docs, but I want to set the movement to be
in blocks of x pixels. similiar to dragables grid movement. can
this be done with the current plugin or will I just have to settle to
use the onstop function and snap it to the correct pixel?
ie from my code here:
w: "#event_" + gEventQ[i].ID +"_dragStart",
e: "#event_" + gEventQ[i].ID +"_dragEnd"
something like:
w: "#event_" + gEventQ[i].ID +"_dragStart" 10px,
e: "#event_" + gEventQ[i].ID +"_dragEnd" 10px
or other options like moveRightBy, moveLeftBy, etc.
~Terry