shobrook/BitVision
Fix click focus capability on input fields for all modals
Aperta
#120 aperta il 28 lug 2018
UI / UXbughelp wanted
Metriche repository
- Star
- (1227 stelle)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
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()
});