Sha256: c190b7a872959bc37eef432bc07920822cc0896001f1704fbbdf764e702bb275

Contents?: true

Size: 337 Bytes

Versions: 8

Compression:

Stored size: 337 Bytes

Contents

/*
 * selectable_core.js
 */

var el;

var drag = function(dx, dy) {
	var off = el.offset(), pos = { clientX: off.left, clientY: off.top };
	el.simulate("mousedown", pos);
	$(document).simulate("mousemove", pos);
	pos.clientX += dx;
	pos.clientY += dy;
	$(document).simulate("mousemove", pos);
	$(document).simulate("mouseup", pos);
};

Version data entries

8 entries across 7 versions & 1 rubygems

Version Path
survivalkit-0.3.4 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.3.3 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.3.3 templates/drupal/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.3.2 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.3.1 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.3 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.2.1 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js
survivalkit-0.1 templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js