1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-09 07:06:36 +02:00

Merge branch 'hnrch02-modal-toggle'

This commit is contained in:
Chris Rebert
2014-03-16 20:24:59 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@
}
Modal.prototype.toggle = function (_relatedTarget) {
return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
return this.isShown ? this.hide() : this.show(_relatedTarget)
}
Modal.prototype.show = function (_relatedTarget) {