CSR-612 Fix button for JAWS

This commit is contained in:
Katie 2022-07-13 08:32:53 -04:00
parent e3ca8b25ba
commit bd496c466d

View file

@ -6,8 +6,7 @@
@keyup.up="handleKeyupArrow()"
@keyup.down="handleKeyupArrow()"
@keyup.left="handleKeyupArrow()"
@keyup.right="handleKeyupArrow()"
>
@keyup.right="handleKeyupArrow()">
<input
:type="isMultiSelect ? 'checkbox' : 'radio'"
:id="buttonID"
@ -119,14 +118,12 @@ export default {
if(!this.selectingInitiatesLoad) {
this.handleCheckChange();
}
this.handleChange(this.value);
},
triggerButton() {
if(this.selectingInitiatesLoad) {
this.displayLoader();
this.handleCheckChange();
}
this.handleChange(this.value);
this.pushEventToGA(this.$route.query[queryStrings.FMG_PAGE], this.GaActions.CLICKED, this.value.toString(), true);
},
handleCheckChange() {
@ -135,6 +132,7 @@ export default {
value: this.value.toString(),
buttonId: this.buttonID && this.buttonID.toString(),
};
this.handleChange(this.value);
this.$emit("isCheckedChanged", emitEvent);
this.$emit("update:modelValue", emitEvent);
},