1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-06 21:56:42 +02:00

fix collapse bug in ie7+ for initial collapse in

This commit is contained in:
Jacob Thornton
2012-03-19 20:51:20 -07:00
parent 07d23b927e
commit 630ff4ff7d
3 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@
[dimension](size || 'auto')
[0].offsetWidth
this.$element[size ? 'addClass' : 'removeClass']('collapse')
this.$element[size != null ? 'addClass' : 'removeClass']('collapse')
return this
}