mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
2aabd427eb
As pointed out by jscs, after a esformatter run. The latter doesn't address these, so fixing them manually.
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
TestHelpers.droppable = {
|
|
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");
|
|
}
|
|
};
|