1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-01 09:22:55 +02:00

add collapsed class to collapse invoker when it's target is collapsed #3525

This commit is contained in:
Jacob Thornton
2012-06-02 17:28:38 -07:00
parent 5e5965ca6f
commit 5b401a8c16
5 changed files with 41 additions and 4 deletions

View File

@@ -150,6 +150,7 @@
|| e.preventDefault()
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
, option = $(target).data('collapse') ? 'toggle' : $this.data()
$this[$(target).hasClass('in') ? 'removeClass' : 'addClass']('show')
$(target).collapse(option)
})
})

View File

@@ -562,6 +562,7 @@
|| e.preventDefault()
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
, option = $(target).data('collapse') ? 'toggle' : $this.data()
$this[$(target).hasClass('in') ? 'removeClass' : 'addClass']('show')
$(target).collapse(option)
})
})

File diff suppressed because one or more lines are too long