diff options
| author | Chris Rebert <[email protected]> | 2016-01-26 11:57:43 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-01-26 11:58:40 -0800 |
| commit | f2d77b674c4fc6ecaaf56e09dedf8489657b4ad2 (patch) | |
| tree | 951186f4868f75ac013e7dfc8dd8e96489a26698 /js | |
| parent | f0ebb4c1503729eae775d674345a3c19454c86b1 (diff) | |
| download | bootstrap-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')
| -rw-r--r-- | js/src/scrollspy.js | 2 |
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) } |
