Merge pull request #908 from Safelite/revert-905-feature/CSR-989
Revert "Feature/csr 989"
This commit is contained in:
commit
bb82408f3e
1 changed files with 5 additions and 7 deletions
|
|
@ -92,21 +92,19 @@ 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
|
||||
document.onkeydown = function (e) {
|
||||
return false;
|
||||
};
|
||||
//prevent keyboard input after button click
|
||||
document.onkeydown = function (e) {
|
||||
return false;
|
||||
};
|
||||
|
||||
if (!this.navigationButtonClicked) {
|
||||
this.$emit("ForwardClicked");
|
||||
this.forwardClicked = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue