UI / UXbughelp wanted
仓库指标
- 星标
- (1,227 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
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()
});