Bug Tracker

Changeset 4909

Show
Ignore:
Timestamp:
03/14/08 17:05:25 (9 months ago)
Author:
d.neojp@…
Message:

Changed autoheight by autoHeight.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ui/ui.accordion.js

    r4875 r4909  
    7171            maxPadding = Math.max(maxPadding, $(this).innerHeight() - $(this).height()); 
    7272        }).height(maxHeight - maxPadding); 
    73     } else if ( options.autoheight ) { 
     73    } else if ( options.autoHeight ) { 
    7474        var maxHeight = 0; 
    7575        options.headers.next().each(function() { 
     
    104104    destroy: function() { 
    105105        this.options.headers.next().css("display", ""); 
    106         if ( this.options.fillSpace || this.options.autoheight ) { 
     106        if ( this.options.fillSpace || this.options.autoHeight ) { 
    107107            this.options.headers.next().css("height", ""); 
    108108        } 
     
    153153                complete: complete, 
    154154                down: down, 
    155                 autoheight: options.autoheight 
     155                autoHeight: options.autoHeight 
    156156            }); 
    157157        } else { 
     
    161161                complete: complete, 
    162162                down: down, 
    163                 autoheight: options.autoheight 
     163                autoHeight: options.autoHeight 
    164164            }); 
    165165        } 
     
    256256        event: "click", 
    257257        header: "a", 
    258         autoheight: true, 
     258        autoHeight: true, 
    259259        running: 0, 
    260260        navigationFilter: function() { 
     
    287287                easing: options.easing, 
    288288                complete: function() { 
    289                     if ( !options.autoheight ) { 
     289                    if ( !options.autoHeight ) { 
    290290                        options.toShow.css("height", "auto"); 
    291291                    }