Created
December 20, 2012 03:38
-
-
Save nickaknudson/4342758 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.extend($.ui.multiAccordion, { | |
// private helper method that used to show tabs | |
_showTab: function($this) { | |
var $span = $this.children('span.ui-icon'); | |
var $div = $this.next(); | |
var options = this.options; | |
$this.removeClass('ui-state-default ui-corner-all').addClass('ui-state-active ui-corner-top'); | |
$span.removeClass('ui-icon-triangle-1-e').addClass('ui-icon-triangle-1-s'); | |
// MODIIFICATION | |
bindThis = this; | |
var ui = { | |
tab: $this, | |
content: $this.next('div') | |
} | |
$div.slideDown('fast', function(){ | |
$div.addClass(options._classes.divActive); | |
// MODIFICATION | |
bindThis._trigger('tabShownComplete'); | |
}); | |
this._trigger('tabShown', null, ui); | |
}, | |
// private helper method that used to show tabs | |
_hideTab: function($this) { | |
var $span = $this.children('span.ui-icon'); | |
var $div = $this.next(); | |
var options = this.options; | |
$this.removeClass('ui-state-active ui-corner-top').addClass('ui-state-default ui-corner-all'); | |
$span.removeClass('ui-icon-triangle-1-s').addClass('ui-icon-triangle-1-e'); | |
// MODIIFICATION | |
bindThis = this; | |
var ui = { | |
tab: $this, | |
content: $this.next('div') | |
} | |
$div.slideUp('fast', function(){ | |
$div.removeClass(options._classes.divActive); | |
// MODIFICATION | |
bindThis._trigger('tabHiddenComplete', null, ui); | |
}); | |
this._trigger('tabHidden', null, ui); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment