shobrook/BitVision
Fix click focus capability on input fields for all modals
Aberta
#120 aberto em 28 de jul. de 2018
UI / UXbughelp wanted
Métricas do repositório
- Stars
- (1.227 estrelas)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 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()
});