1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 21:49:09 +01:00

Merge pull request #10834 from Prinzhorn/master

Only preventDefault on click on [data-toggle="modal"] when the element is a link
This commit is contained in:
Jacob 2013-12-26 17:46:59 -08:00
commit bea46fca70

View File

@ -218,7 +218,7 @@
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
var option = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
e.preventDefault()
if ($this.is('a')) e.preventDefault()
$target
.modal(option, this)