mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
21 lines
364 B
JavaScript
21 lines
364 B
JavaScript
/*
|
|
* resizable_events.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("resizable: events");
|
|
|
|
test("start", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
test("resize", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
test("stop", function() {
|
|
ok(false, "missing test - untested code is broken code.");
|
|
});
|
|
|
|
})(jQuery);
|