From 710898a3fe58ecb71d9d6f401a6381a2789f81d9 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Mon, 11 Apr 2022 11:03:31 -0400 Subject: [PATCH] CSR-478 reset keydown after navigation --- src/router/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/router/index.js b/src/router/index.js index 778c55cfc..1caa4f3af 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -34,6 +34,8 @@ const routes = [ path: "/", name: "root", async beforeEnter(to, from, next) { + document.onkeydown = null; + // If we have no query string, or we don't have the FmgPage query string. if (to.query.fmgPage === undefined) { await GoToFunnelStartOn404(next);