shobrook/BitVision

Fix click focus capability on input fields for all modals

オープン

#120 opened on 2018/07/28

 (1 件のコメント) (0 件のリアクション) (0 人の担当者)JavaScript (191 件のフォーク)github user discovery
UI / UXbughelp wanted

Repository metrics

Stars
 (1,227 個のスター)
PR merge metrics
 (30d に merged 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()
});

コントリビューターガイド