From f2d77b674c4fc6ecaaf56e09dedf8489657b4ad2 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 26 Jan 2016 11:57:43 -0800 Subject: [PATCH] scrollspy.js: Avoid gratuitous non-ASCII for consistency+compatibility Fixes #19028 [skip sauce] [skip validator] --- js/src/scrollspy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }