aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/resizable_methods.js
blob: 997293099f1c4bb5647c2c74db163b24d501fbfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * resizable_methods.js
 */
(function($) {

module( "resizable: methods" );

test( "disable", function( assert ) {
	expect( 5 );

	var element = $( "#resizable1" ).resizable({ disabled: false }),
		chainable = element.resizable( "disable" );

	assert.lacksClasses( element.resizable( "widget" ), "ui-state-disabled" );
	ok( !element.resizable( "widget" ).attr( "aria-disabled" ), "element does not get aria-disabled" );
	assert.hasClasses( element.resizable( "widget" ), "ui-resizable-disabled" );
	equal( element.resizable( "option", "disabled" ), true, "disabled option setter" );
	equal( chainable, element, "disable is chainable" );
});

})(jQuery);