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", {
405405 animate = this . options . animate || { } ,
406406 options = down && animate . down || animate ,
407407 complete = function ( ) {
408- toShow . removeData ( "accordionHeight " ) ;
408+ toShow . removeData ( "ui-accordion-height " ) ;
409409 that . _completed ( data ) ;
410410 } ;
411411
@@ -430,7 +430,7 @@ $.widget( "ui.accordion", {
430430 toHide . animate ( hideProps , duration , easing ) ;
431431 toShow
432432 . hide ( )
433- . data ( "accordionHeight " , {
433+ . data ( "ui-accordion-height " , {
434434 total : total ,
435435 toHide : toHide
436436 } )
@@ -455,7 +455,7 @@ $.widget( "ui.accordion", {
455455
456456$ . fx . step . accordionHeight = function ( fx ) {
457457 var elem = $ ( fx . elem ) ,
458- data = elem . data ( "accordionHeight " ) ;
458+ data = elem . data ( "ui-accordion-height " ) ;
459459 elem . height ( data . total - elem . outerHeight ( ) - data . toHide . outerHeight ( ) + elem . height ( ) ) ;
460460} ;
461461var hideProps = { } ,
You can’t perform that action at this time.
0 commit comments