fix build

This commit is contained in:
fat 2014-07-05 23:49:45 -07:00
parent 7933a50ee5
commit c08e275000
1 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@
}
Collapse.prototype.toggle = function () {
$this.toggleClass('collapsed', $target.hasClass('in'))
this[this.$element.hasClass('in') ? 'hide' : 'show']()
}
@ -160,7 +160,7 @@
if (!data || !data.transitioning) {
if ($parent) $parent.find('[data-toggle="collapse"][data-parent="' + parent + '"]').not($this).addClass('collapsed')
$this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
$this.toggleClass('collapsed', $target.hasClass('in'))
}
Plugin.call($target, option)