| Index: ui/login/account_picker/screen_account_picker.js
|
| diff --git a/ui/login/account_picker/screen_account_picker.js b/ui/login/account_picker/screen_account_picker.js
|
| index 865d64d3c88f5650193507429543cd5d70e94b23..ef384402b71d37bd9ab7235910ca375645403454 100644
|
| --- a/ui/login/account_picker/screen_account_picker.js
|
| +++ b/ui/login/account_picker/screen_account_picker.js
|
| @@ -54,6 +54,11 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
|
| /** @override */
|
| onWindowResize: function() {
|
| $('pod-row').onWindowResize();
|
| +
|
| + // Reposition the error bubble, if there is one. Since we are just
|
| + // moving the bubble, the number of login attempts tried doesn't matter.
|
| + if ($('bubble'))
|
| + this.showErrorBubble(0, undefined /* Reuses the existing message. */);
|
| },
|
|
|
| /**
|
| @@ -348,4 +353,3 @@ login.createScreen('AccountPickerScreen', 'account-picker', function() {
|
| }
|
| };
|
| });
|
| -
|
|
|