shobrook/BitVision

Fix click focus capability on input fields for all modals

Offen

#120 geöffnet am 28.07.2018

 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)JavaScript (191 Forks)github user discovery
UI / UXbughelp wanted

Repository-Metriken

Stars
 (1.227 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

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()
});

Contributor Guide