From 8d31d30ec92be9bf4c19d9cefd66d250803cab2f Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Fri, 30 Dec 2022 08:42:49 -0500 Subject: [PATCH] Additional comments after testing --- src/common-components/funnel-footer/funnel-footer.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index b123fdcd1..6b9e16de0 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -93,15 +93,17 @@ export default { removeLoader() { this.$refs.buttonMain.removeLoader(); + // Restore keyboard input after loader is removed document.onkeydown = function (e) { return true; }; + // Reset the button clicked flags this.navigationButtonClicked = false; }, buttonClick() { if (!this.navigationButtonClicked) { - //prevent keyboard input after button click + // Prevent keyboard input after button click document.onkeydown = function (e) { return false; };