Don't add 1sec delay for search input focus

This commit is contained in:
Johannes Zellner
2020-06-13 22:16:16 +02:00
parent b6157d58c8
commit 7bf06da9f8
+1 -1
View File
@@ -385,7 +385,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
// hashChangeListener calls $apply, so make sure we don't double digest here
setTimeout(hashChangeListener, 1);
setTimeout(function () { $('#appstoreSearch').focus(); }, 1000);
setTimeout(function () { $('#appstoreSearch').focus(); }, 1);
callback();
});