File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ $.widget( "ui.accordion", {
405
405
animate = this . options . animate || { } ,
406
406
options = down && animate . down || animate ,
407
407
complete = function ( ) {
408
- toShow . removeData ( "accordionHeight " ) ;
408
+ toShow . removeData ( "ui-accordion-height " ) ;
409
409
that . _completed ( data ) ;
410
410
} ;
411
411
@@ -430,7 +430,7 @@ $.widget( "ui.accordion", {
430
430
toHide . animate ( hideProps , duration , easing ) ;
431
431
toShow
432
432
. hide ( )
433
- . data ( "accordionHeight " , {
433
+ . data ( "ui-accordion-height " , {
434
434
total : total ,
435
435
toHide : toHide
436
436
} )
@@ -455,7 +455,7 @@ $.widget( "ui.accordion", {
455
455
456
456
$ . fx . step . accordionHeight = function ( fx ) {
457
457
var elem = $ ( fx . elem ) ,
458
- data = elem . data ( "accordionHeight " ) ;
458
+ data = elem . data ( "ui-accordion-height " ) ;
459
459
elem . height ( data . total - elem . outerHeight ( ) - data . toHide . outerHeight ( ) + elem . height ( ) ) ;
460
460
} ;
461
461
var hideProps = { } ,
You can’t perform that action at this time.
0 commit comments