Autofocus appstore search field

This commit is contained in:
Johannes Zellner
2017-01-28 20:26:38 -08:00
parent 0dceba8a1c
commit 1ac7570cfb
2 changed files with 3 additions and 1 deletions

View File

@@ -561,6 +561,8 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
fetchAppstoreConfig(function (error) {
if (error) console.error(error);
$scope.ready = true;
setTimeout(function () { $('#appstoreSearch').focus(); }, 1000);
});
});
}