Chromium Code Reviews| 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 c36496d08a4a503ebf0f7d286d8951430160ce45..c3c58ab3dad18943f3223fe3f785263e6f880145 100644 |
| --- a/ui/login/account_picker/user_pod_row.js |
| +++ b/ui/login/account_picker/user_pod_row.js |
| @@ -3247,6 +3247,7 @@ cr.define('login', function() { |
| // it happened when 'flying-pods' class was disabled. |
| setTimeout(function() { |
| Oobe.getInstance().toggleClass('flying-pods', true); |
| + ensureTransitionEndEvent(focusedPod); |
|
xiyuan
2016/03/18 15:37:48
We need to test |focusedPod| because |focusedPod|
jdufault
2016/03/18 17:31:56
Done.
|
| }, 0); |
| // Force input focus for user pod on show and once transition ends. |
| if (this.focusedPod_) { |
| @@ -3259,8 +3260,6 @@ cr.define('login', function() { |
| // Notify screen that it is ready. |
| screen.onShow(); |
| }); |
| - // Guard timer for 1 second -- it would conver all possible animations. |
| - ensureTransitionEndEvent(focusedPod, 1000); |
| } |
| }, |