aboutsummaryrefslogtreecommitdiffstats
path: root/ui/tests/draggable.js
blob: f4b17b1ff3ced506e65cb3f787297ba845e03553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$.fn.triggerKeydown = function(keyCode) {
	return this.trigger("keydown", [$.event.fix({event:"keydown", keyCode: keyCode, target: this[0]})]);
};


$(document).ready(function() {

	$("#draggable1").draggable();
	
	module("draggable: simple drag & drop");
	
	test("simple drag", function() {

		expect(1);
		ok(true, "Drag and drop element on the same position");
		
	});

});