From 92347662c59e408d2cbc6c079854b3f393c5e0d7 Mon Sep 17 00:00:00 2001 From: Benoit Esnard Date: Tue, 21 Apr 2026 21:20:07 +0200 Subject: [PATCH] Fix the ReferenceError when using keyboard navigation --- js/common.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/common.js b/js/common.js index aac5fb05ce..fc17595636 100644 --- a/js/common.js +++ b/js/common.js @@ -118,9 +118,6 @@ function cycleMenuItems(current, forward) { var nextOrPreviousSibling = getNextOrPreviousSibling(current, forward); if (nextOrPreviousSibling.length) { cycle(nextOrPreviousSibling, current); - curr.children("a").first().focus().css({ - outline: "none" - }); } }