From 843b052401ed5d4a9f182e92583edbb2866bf37a Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Thu, 29 Sep 2016 22:56:42 -0700 Subject: [PATCH] Fix for in-page anchor links --- js/anchorlinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/anchorlinks.js b/js/anchorlinks.js index 1e73ea92d7..8307fe68e3 100644 --- a/js/anchorlinks.js +++ b/js/anchorlinks.js @@ -5,7 +5,7 @@ for (var i = 0; i < hs.length; i++) { h = hs[i]; if (h.id != null && h.id.length > 0) { - h.insertAdjacentHTML('beforeend', '') + h.insertAdjacentHTML('beforeend', '') } }