From: Chris Rebert Date: Tue, 26 Jan 2016 19:57:43 +0000 (-0800) Subject: scrollspy.js: Avoid gratuitous non-ASCII for consistency+compatibility X-Git-Tag: v4.0.0-alpha.3~333^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2d77b674c4fc6ecaaf56e09dedf8489657b4ad2;p=thirdparty%2Fbootstrap.git scrollspy.js: Avoid gratuitous non-ASCII for consistency+compatibility Fixes #19028 [skip sauce] [skip validator] --- diff --git a/js/src/scrollspy.js b/js/src/scrollspy.js index f80378e01c..b9186db00d 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) }