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() {
|
removeLoader() {
|
||||||
this.$refs.buttonMain.removeLoader();
|
this.$refs.buttonMain.removeLoader();
|
||||||
|
|
||||||
|
// Restore keyboard input after loader is removed
|
||||||
document.onkeydown = function (e) {
|
document.onkeydown = function (e) {
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Reset the button clicked flags
|
||||||
this.navigationButtonClicked = false;
|
this.navigationButtonClicked = false;
|
||||||
},
|
},
|
||||||
buttonClick() {
|
buttonClick() {
|
||||||
if (!this.navigationButtonClicked) {
|
if (!this.navigationButtonClicked) {
|
||||||
//prevent keyboard input after button click
|
// Prevent keyboard input after button click
|
||||||
document.onkeydown = function (e) {
|
document.onkeydown = function (e) {
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue