Provides resizing capability for any DOM node
Modifies element such that clicking and moving on clicker will cause it to resize. Type (constant) specifies resizing direction.
var corner = OAT.Dom.create("div");
var body = OAT.Dom.create("div");
body.appendChild(corner);
OAT.Drag.create(corner, body, OAT.Resize.TYPE_XY);
Removes resizing relation between clicker and element.
Removes all resizing relations from clicker.