shobrook/BitVision

Fix click focus capability on input fields for all modals

Open

#120 opened on Jul 28, 2018

 (1 comment) (0 reactions) (0 assignees)JavaScript (191 forks)github user discovery
UI / UXbughelp wanted

Repository metrics

Stars
 (1,227 stars)
PR merge metrics
 (No merged PRs in 30d)

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

Contributor guide