aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-02-06 02:07:40 -0800
committerMark Otto <[email protected]>2013-02-06 02:07:40 -0800
commit8ca70bd83a92c0fdc1759b1d55b699e4162cf865 (patch)
tree80661279c49d2f640b4ba1fc6c3a115add4b34bd /js
parent0b4668368bb3ffd7800e6cb7c49366d78b156167 (diff)
downloadbootstrap-8ca70bd83a92c0fdc1759b1d55b699e4162cf865.tar.xz
bootstrap-8ca70bd83a92c0fdc1759b1d55b699e4162cf865.zip
Overhaul modal to make it responsive and not super lame
Diffstat (limited to 'js')
-rw-r--r--js/bootstrap-modal.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index 2c5ef79d2..ed2f1f894 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -239,6 +239,10 @@
.one('hide', function () {
$this.focus()
})
- })
+ })
+
+ var $body = $('body')
+ .on('shown', '.modal', function () { $body.addClass('modal-open') })
+ .on('hidden', '.modal', function () { $body.removeClass('modal-open') })
}(window.jQuery);