aboutsummaryrefslogtreecommitdiff
path: root/js/bootstrap-modal.js
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-10-17 23:05:16 -0700
committerJacob Thornton <[email protected]>2012-10-17 23:05:16 -0700
commit7f3b94c45315475a129ace3c22e122808c2dbcaa (patch)
tree0b963ce17c8bd8c5f43356da36015daee7295ede /js/bootstrap-modal.js
parent280d4aeb30aa6b29ec74bd801ad1be3fc05e01f4 (diff)
parente1f6458e3640a628cdb6b2e4c63950777d46e141 (diff)
downloadbootstrap-7f3b94c45315475a129ace3c22e122808c2dbcaa.tar.xz
bootstrap-7f3b94c45315475a129ace3c22e122808c2dbcaa.zip
Merge branch 'delegate-api-to-document' of git://github.com/badcarl/bootstrap into badcarl-delegate-api-to-document
Conflicts: js/bootstrap-carousel.js
Diffstat (limited to 'js/bootstrap-modal.js')
-rw-r--r--js/bootstrap-modal.js28
1 files changed, 13 insertions, 15 deletions
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index d2a4878b3..185519aaf 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -214,21 +214,19 @@
/* MODAL DATA-API
* ============== */
- $(function () {
- $('body').on('click.modal.data-api', '[data-toggle="modal"]', function ( e ) {
- var $this = $(this)
- , href = $this.attr('href')
- , $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
- , option = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
-
- e.preventDefault()
-
- $target
- .modal(option)
- .one('hide', function () {
- $this.focus()
- })
- })
+ $(document).on('click.modal.data-api', '[data-toggle="modal"]', function (e) {
+ var $this = $(this)
+ , href = $this.attr('href')
+ , $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
+ , option = $target.data('modal') ? 'toggle' : $.extend({ remote:!/#/.test(href) && href }, $target.data(), $this.data())
+
+ e.preventDefault()
+
+ $target
+ .modal(option)
+ .one('hide', function () {
+ $this.focus()
+ })
})
}(window.jQuery);