diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-05-28 19:35:09 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-05-28 19:35:09 +0000 |
commit | 46cfa2f147b84e68505ee5e9a4017ade00f8bea4 (patch) | |
tree | 787707a38198f65169ee1ca103651cec4d3497d8 | |
parent | 3fd0d70dee119fa7e4e821d5975056d539d86952 (diff) | |
download | jquery-ui-46cfa2f147b84e68505ee5e9a4017ade00f8bea4.tar.gz jquery-ui-46cfa2f147b84e68505ee5e9a4017ade00f8bea4.zip |
accordion tests: Fixed autoHeight tests.
-rw-r--r-- | ui/tests/accordion.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/tests/accordion.js b/ui/tests/accordion.js index 792c104d4..a2b053833 100644 --- a/ui/tests/accordion.js +++ b/ui/tests/accordion.js @@ -14,11 +14,11 @@ test("basics", function() { });
test("autoheight", function() {
- $('#navigation').accordion({ header: '.head', autoheight: false });
+ $('#navigation').accordion({ header: '.head', autoHeight: false });
equals( 90, $('#navigation ul:first').height() );
equals( 126, $('#navigation ul:eq(1)').height() );
equals( 54, $('#navigation ul:last').height() );
- $('#navigation').accordion("destroy").accordion({ header: '.head',autoheight: true });
+ $('#navigation').accordion("destroy").accordion({ header: '.head', autoHeight: true });
equals( 126, $('#navigation ul:first').height() );
equals( 126, $('#navigation ul:eq(1)').height() );
equals( 126, $('#navigation ul:last').height() );
|