mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
fix build
This commit is contained in:
parent
7933a50ee5
commit
c08e275000
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue