Additional comments after testing

This commit is contained in:
Leah Schumann 2022-12-30 08:42:49 -05:00
parent 1563a90da1
commit 8d31d30ec9

View file

@ -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;
};