0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-19 16:54:24 +01:00

only prevent default of links in sections

This commit is contained in:
Jacob Thornton 2012-01-20 20:05:16 -08:00
parent 3ed836b198
commit 7444310c4d

View File

@ -38,7 +38,7 @@ $(function(){
// it's merely here to prevent button clicks form taking you
// away from your spot on page!!
$('[href^=#]').click(function (e) {
$('section [href^=#]').click(function (e) {
e.preventDefault()
})