mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
19 lines
394 B
JavaScript
19 lines
394 B
JavaScript
$.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");
|
|
|
|
});
|
|
|
|
}); |