mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
e1230997aa
Squashed commit of the following: commit7f19f92c64
Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 10:34:28 2012 -0400 put back in fake args for signatures that we want to keep commit257505a9e6
Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 08:10:20 2012 -0400 changes per @scott_gonzalez commit12725480cb
Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:54:05 2012 -0400 clean up unused vars in ui directory commit563595e7ae
Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:37:42 2012 -0400 clean up unused vars in grunt and tests
33 lines
558 B
JavaScript
33 lines
558 B
JavaScript
/*
|
|
* selectable_events.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("selectable: events");
|
|
|
|
test("start", function() {
|
|
expect(2);
|
|
el = $("#selectable1");
|
|
el.selectable({
|
|
start: function() {
|
|
ok(true, "drag fired start callback");
|
|
equal(this, el[0], "context of callback");
|
|
}
|
|
});
|
|
el.simulate("drag", 20, 20);
|
|
});
|
|
|
|
test("stop", function() {
|
|
expect(2);
|
|
el = $("#selectable1");
|
|
el.selectable({
|
|
start: function() {
|
|
ok(true, "drag fired stop callback");
|
|
equal(this, el[0], "context of callback");
|
|
}
|
|
});
|
|
el.simulate("drag", 20, 20);
|
|
});
|
|
|
|
})(jQuery);
|