| Index: ui/login/account_picker/user_pod_row.js
|
| diff --git a/ui/login/account_picker/user_pod_row.js b/ui/login/account_picker/user_pod_row.js
|
| index c258be189f92761f2b8efd3a592195be78f04b0a..ab4f5761a490a0c83005b5bc5824d8e8a260b241 100644
|
| --- a/ui/login/account_picker/user_pod_row.js
|
| +++ b/ui/login/account_picker/user_pod_row.js
|
| @@ -1137,6 +1137,12 @@ cr.define('login', function() {
|
| currentElement.classList.toggle('pin-enabled', visible);
|
| currentElement.classList.toggle('pin-disabled', !visible);
|
| }
|
| +
|
| + // Set the focus to the input element after showing/hiding pin keyboard.
|
| + if (visible)
|
| + this.pinKeyboard.focus();
|
| + else
|
| + this.mainInput.focus();
|
| },
|
|
|
| setUserPodIconType: function(userTypeClass) {
|
|
|