mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-29 21:52:22 +01:00
fixes #10205 Scrollspy Doesn't Support Chinese ID Targets http://mathiasbynens.be/notes/html5-id-class
This commit is contained in:
parent
71e9db4183
commit
a87b150bc7
2
dist/js/bootstrap.js
vendored
2
dist/js/bootstrap.js
vendored
@ -1532,7 +1532,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
|
|||||||
.map(function () {
|
.map(function () {
|
||||||
var $el = $(this)
|
var $el = $(this)
|
||||||
var href = $el.data('target') || $el.attr('href')
|
var href = $el.data('target') || $el.attr('href')
|
||||||
var $href = /^#\w/.test(href) && $(href)
|
var $href = /^#./.test(href) && $(href)
|
||||||
|
|
||||||
return ($href
|
return ($href
|
||||||
&& $href.length
|
&& $href.length
|
||||||
|
2
dist/js/bootstrap.min.js
vendored
2
dist/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -47,7 +47,7 @@
|
|||||||
.map(function () {
|
.map(function () {
|
||||||
var $el = $(this)
|
var $el = $(this)
|
||||||
var href = $el.data('target') || $el.attr('href')
|
var href = $el.data('target') || $el.attr('href')
|
||||||
var $href = /^#\w/.test(href) && $(href)
|
var $href = /^#./.test(href) && $(href)
|
||||||
|
|
||||||
return ($href
|
return ($href
|
||||||
&& $href.length
|
&& $href.length
|
||||||
|
Loading…
x
Reference in New Issue
Block a user