focus email field on load

This commit is contained in:
Kyle Spearrin 2016-09-20 17:53:52 -04:00
parent e18fed1449
commit d7d45f3b50
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
.controller('accountsHintController', function ($scope, $state, apiService, toastr, $q) {
popupUtils.initListSectionItemListeners();
$('#email').focus();
$scope.submitPromise = null;
$scope.submit = function (model) {

View File

@ -3,6 +3,7 @@
.controller('accountsLoginController', function ($scope, $state, loginService, userService) {
popupUtils.initListSectionItemListeners();
$('#email').focus();
$scope.loginPromise = null;
$scope.login = function (model) {