spanish-quizzer

An app to quiz you on Spanish vocabulary and verb conjugations
git clone https://git.ashermorgan.net/spanish-quizzer/
Log | Files | Refs | README

commit a1de9bffda1683c63193f8a1bc152f3be716082f
parent 0d7edb1d31849a069bb4dbb0cfb2998ce59561eb
Author: AsherMorgan <59518073+AsherMorgan@users.noreply.github.com>
Date:   Tue, 23 Mar 2021 21:20:04 -0700

Focus quizzer input after the quizzer is mounted

Diffstat:
Mjs/quizzer.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/js/quizzer.js b/js/quizzer.js @@ -269,6 +269,10 @@ const quizzer = Vue.component("quizzer", { this.Reset(); }, + mounted: function() { + this.$refs.input.focus(); + }, + destroyed: function() { // Remove keyup handler window.removeEventListener("keyup", this.keyup);