Additional comments after testing
This commit is contained in:
parent
1563a90da1
commit
8d31d30ec9
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue