CSR-1012 | call function on textLink click
This commit is contained in:
parent
205b63556e
commit
9c89b89cd1
1 changed files with 9 additions and 1 deletions
|
|
@ -13,7 +13,8 @@
|
|||
href="#!"
|
||||
data-bs-toggle="modal"
|
||||
:data-bs-target="getModalId"
|
||||
aria-label="Modal window" />
|
||||
aria-label="Modal window"
|
||||
@click-event="focusOnZipInput" />
|
||||
</div>
|
||||
</div>
|
||||
<modal
|
||||
|
|
@ -103,6 +104,13 @@ export default {
|
|||
this.$refs.zipCodeInputModal.resetButtonStyle();
|
||||
},
|
||||
|
||||
focusOnZipInput() {
|
||||
console.log("focusOnZipInput");
|
||||
var input = document.getElementById("serviceZipCodeInput");
|
||||
input.focus();
|
||||
// this.$refs.zipInputTextQuestion.focus();
|
||||
},
|
||||
|
||||
async setZip() {
|
||||
this.resetAlerts();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue