Ensure the appstore login input field has focus

This commit is contained in:
Johannes Zellner
2017-01-16 12:53:34 +01:00
parent 17e9f3b41d
commit 56338beae1

View File

@@ -578,5 +578,10 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
});
});
// autofocus if appstore login is shown
$scope.$watch('cloudronDetails', function (newValue, oldValue) {
if (!oldValue) setTimeout(function () { $('[name=appstoreLoginForm]').find('[autofocus]:first').focus(); }, 1000);
});
$('.modal-backdrop').remove();
}]);