CSR-612 Fix list-button for JAWS
This commit is contained in:
parent
bd496c466d
commit
3656c62cf6
1 changed files with 7 additions and 6 deletions
|
|
@ -106,18 +106,19 @@ export default {
|
|||
this.isLoaderDisplayed = true;
|
||||
},
|
||||
handleInputChange() {
|
||||
if(!this.selectingInitiatesLoad) {
|
||||
this.handleCheckChange();
|
||||
}
|
||||
if(this.selectingInitiatesLoad) {
|
||||
this.triggerButton();
|
||||
}
|
||||
else {
|
||||
this.handleCheckChange();
|
||||
}
|
||||
},
|
||||
handleKeyupArrow() {
|
||||
if (this.isMultiSelect) {
|
||||
return; // Prevent arrow keys from doing anything if element is a checkbox
|
||||
}
|
||||
|
||||
if(!this.selectingInitiatesLoad) {
|
||||
this.handleCheckChange();
|
||||
}
|
||||
this.handleInputChange();
|
||||
},
|
||||
triggerButton() {
|
||||
if(this.selectingInitiatesLoad) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue