shobrook/BitVision

Fix click focus capability on input fields for all modals

Ouverte

#120 ouverte le 28 juil. 2018

 (1 commentaire) (0 réaction) (0 personne assignée)JavaScript (191 forks)github user discovery
UI / UXbughelp wanted

Métriques du dépôt

Stars
 (1 227 étoiles)
Métriques de merge PR
 (Aucune PR mergée en 30 j)

Description

It would be cool if you could use your mouse to select each of the entry fields in the login screen.

The code will look something like:

keyEntryBox.on("click", function(data) {
	secretEntryBox.unfocus
	keyEntryBox.focus()
});

secretEntryBox.on("click", function(data) {
	secretEntryBox.focus()
});

passphraseEntryBox.on("click", function(data) {
	passphraseEntryBox.focus()
});

Guide contributeur