Commit 4e4e4563 authored by Heinrich Fenkart's avatar Heinrich Fenkart Committed by Chris Rebert
Browse files

Fix #12845 - Modal#hide should only be called with an event argument

Closes #12850
parent ead17b7c
3 merge requests!28721Hot test,!22103test,!25326Adjust examples
Showing with 2 additions and 2 deletions
+2 -2
......@@ -817,7 +817,7 @@ if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript re
}
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) {
......
......@@ -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) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment