mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
44d07173db
Fixes #5973 - Resizable: disabled should not have the ui-state-disabled class or aria attribute aria-disabled
Fixes #5974 - Draggable: disabled should not have the ui-state-disabled class or aria attribute aria-disabled
Fixes #6039 - Droppable: disabled should not have ui-state-disabled
This reverts commit 23771d38ba
.
22 lines
720 B
JavaScript
22 lines
720 B
JavaScript
/*
|
|
* resizable_methods.js
|
|
*/
|
|
(function($) {
|
|
|
|
module( "resizable: methods" );
|
|
|
|
test( "disable", function() {
|
|
expect( 5 );
|
|
|
|
var element = $( "#resizable1" ).resizable({ disabled: false }),
|
|
chainable = element.resizable( "disable" );
|
|
|
|
ok( !element.resizable( "widget" ).hasClass( "ui-state-disabled" ), "element does not get ui-state-disabled" );
|
|
ok( !element.resizable( "widget" ).attr( "aria-disabled" ), "element does not get aria-disabled" );
|
|
ok( element.resizable( "widget" ).hasClass( "ui-resizable-disabled" ), "element gets ui-resizable-disabled" );
|
|
equal( element.resizable( "option", "disabled" ), true, "disabled option setter" );
|
|
equal( chainable, element, "disable is chainable" );
|
|
});
|
|
|
|
})(jQuery);
|