.addClass( "ui-accordion-li-fix" );
self.headers = self.element.find( options.header )
- .addClass( "ui-accordion-header ui-helper-reset ui-state-default ui-corner-all" )
- .bind( "mouseenter.accordion", function() {
- if ( options.disabled ) {
- return;
- }
- $( this ).addClass( "ui-state-hover" );
- })
- .bind( "mouseleave.accordion", function() {
- if ( options.disabled ) {
- return;
- }
- $( this ).removeClass( "ui-state-hover" );
- })
- .bind( "focus.accordion", function() {
- if ( options.disabled ) {
- return;
- }
- $( this ).addClass( "ui-state-focus" );
- })
- .bind( "blur.accordion", function() {
- if ( options.disabled ) {
- return;
- }
- $( this ).removeClass( "ui-state-focus" );
- });
+ .addClass( "ui-accordion-header ui-helper-reset ui-state-default ui-corner-all" );
+ self._hoverable( self.headers );
+ self._focusable( self.headers );
+
self.headers.next()
.addClass( "ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" );
self.headers.find( ":first-child" ).addClass( "ui-accordion-heading" );
options );
this.bindings = $();
+ this.hoverable = $();
+ this.focusable = $();
this._bind({ remove: "destroy" });
this._create();
destroy: function() {
this._destroy();
+ // we can probably remove the unbind calls in 2.0
+ // all event bindings should go through this._bind()
this.element
.unbind( "." + this.widgetName )
.removeData( this.widgetName );
.removeClass(
this.widgetBaseClass + "-disabled " +
"ui-state-disabled" );
+
+ // clean up events and states
this.bindings.unbind( "." + this.widgetName );
+ this.hoverable.removeClass( "ui-state-hover" );
+ this.focusable.removeClass( "ui-state-focus" );
},
_destroy: $.noop,
this.widget()
.toggleClass( this.widgetBaseClass + "-disabled ui-state-disabled", !!value )
.attr( "aria-disabled", value );
+ this.hoverable.removeClass( "ui-state-hover" );
+ this.focusable.removeClass( "ui-state-focus" );
}
return this;
});
},
+ _hoverable: function( element ) {
+ this.hoverable = this.hoverable.add( element );
+ this._bind( element, {
+ mouseenter: function( event ) {
+ $( event.currentTarget ).addClass( "ui-state-hover" );
+ },
+ mouseleave: function( event ) {
+ $( event.currentTarget ).removeClass( "ui-state-hover" );
+ }
+ });
+ },
+
+ _focusable: function( element ) {
+ this.focusable = this.focusable.add( element );
+ this._bind( element, {
+ focus: function( event ) {
+ $( event.currentTarget ).addClass( "ui-state-focus" );
+ },
+ blur: function( event ) {
+ $( event.currentTarget ).removeClass( "ui-state-focus" );
+ }
+ });
+ },
+
_trigger: function( type, event, data ) {
var callback = this.options[ type ];