mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
23 lines
529 B
JavaScript
23 lines
529 B
JavaScript
/*
|
|
* droppable_options.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("droppable: options");
|
|
|
|
test("{ addClasses: true }, default", function() {
|
|
equals(droppable_defaults.addClasses, true);
|
|
|
|
el = $("<div></div>").droppable({ addClasses: true });
|
|
ok(el.is(".ui-droppable"), "'ui-droppable' class added");
|
|
el.droppable("destroy");
|
|
});
|
|
|
|
test("{ addClasses: false }", function() {
|
|
el = $("<div></div>").droppable({ addClasses: false });
|
|
ok(!el.is(".ui-droppable"), "'ui-droppable' class not added");
|
|
el.droppable("destroy");
|
|
});
|
|
|
|
})(jQuery);
|