1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Revert branchList focus call change

This commit is contained in:
Nick O'Leary 2019-04-29 16:32:43 +01:00
parent bad2baba7f
commit 4c8c081c31
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -582,7 +582,7 @@ RED.sidebar.versionControl = (function() {
localBranchBox.show();
setTimeout(function() {
localBranchBox.css("height","215px");
localBranchList.trigger("focus");
localBranchList.focus();
},100);
}
})
@ -775,7 +775,7 @@ RED.sidebar.versionControl = (function() {
setTimeout(function() {
remoteBranchSubRow.height(180);
remoteBox.css("height","445px");
remoteBranchList.trigger("focus");
remoteBranchList.focus();
},100);
}
});