aboutsummaryrefslogtreecommitdiff
path: root/js/bootstrap-modal.js
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2011-11-27 17:04:55 -0800
committerJacob Thornton <[email protected]>2011-11-27 17:04:55 -0800
commit46fe38386afce7149810b1feb534726735ce28b2 (patch)
treec6a8b8e5c27a0aa30491f95505d7ed431845c5c7 /js/bootstrap-modal.js
parent3925ea9986e70f5a87883563c47c8ecd3d631c02 (diff)
downloadbootstrap-46fe38386afce7149810b1feb534726735ce28b2.tar.xz
bootstrap-46fe38386afce7149810b1feb534726735ce28b2.zip
rename tabs to tab - clean up lots of api stuff make href acceptable target val
Diffstat (limited to 'js/bootstrap-modal.js')
-rw-r--r--js/bootstrap-modal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index dab67d1b2..5f543c553 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -192,7 +192,7 @@
$(document).ready(function () {
$('body').delegate('[data-toggle="modal"]', 'click.modal.data-api', function ( e ) {
var $this = $(this)
- , target = $this.attr('data-target')
+ , target = $this.attr('data-target') || $this.attr('href')
, option = $(target).data('modal') ? 'toggle' : $this.data()
e.preventDefault()
$(target).modal(option)