mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
0cab9f0a2f
Ref #14246
21 lines
358 B
JavaScript
21 lines
358 B
JavaScript
define( [
|
|
"jquery",
|
|
"lib/helper"
|
|
], function( $, helper ) {
|
|
|
|
return $.extend( helper, {
|
|
shouldDrop: function() {
|
|
|
|
// todo: actually implement this
|
|
ok( true, "missing test - untested code is broken code" );
|
|
},
|
|
|
|
shouldNotDrop: function() {
|
|
|
|
// todo: actually implement this
|
|
ok( true, "missing test - untested code is broken code" );
|
|
}
|
|
} );
|
|
|
|
} );
|