aboutsummaryrefslogtreecommitdiff
path: root/js/src/scrollspy.js
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2016-01-26 11:57:43 -0800
committerChris Rebert <[email protected]>2016-01-26 11:58:40 -0800
commitf2d77b674c4fc6ecaaf56e09dedf8489657b4ad2 (patch)
tree951186f4868f75ac013e7dfc8dd8e96489a26698 /js/src/scrollspy.js
parentf0ebb4c1503729eae775d674345a3c19454c86b1 (diff)
downloadbootstrap-f2d77b674c4fc6ecaaf56e09dedf8489657b4ad2.tar.xz
bootstrap-f2d77b674c4fc6ecaaf56e09dedf8489657b4ad2.zip
scrollspy.js: Avoid gratuitous non-ASCII for consistency+compatibility
Fixes #19028 [skip sauce] [skip validator]
Diffstat (limited to 'js/src/scrollspy.js')
-rw-r--r--js/src/scrollspy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/scrollspy.js b/js/src/scrollspy.js
index f80378e01..b9186db00 100644
--- a/js/src/scrollspy.js
+++ b/js/src/scrollspy.js
@@ -249,7 +249,7 @@ const ScrollSpy = (($) => {
$link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)
$link.addClass(ClassName.ACTIVE)
} else {
- // todo (fat) this is kinda sus…
+ // todo (fat) this is kinda sus...
// recursively add actives to tested nav-links
$link.parents(Selector.LI).find(Selector.NAV_LINKS).addClass(ClassName.ACTIVE)
}