autofocus on user search

sandwich icon fixed
user search starts at the beginning of the string
This commit is contained in:
Ricsi
2017-01-19 23:40:58 +01:00
parent 1b78abb5c7
commit 8dfd618042
4 changed files with 10 additions and 5 deletions

View File

@@ -73,6 +73,10 @@ setlocale(LC_ALL, 'hu_HU');
onReady(function () {
show('main_content', true);
show('loading', false);
//user list autofocus Firefox fix
if ($("#uk_filter_name").length) {
$("#uk_filter_name").focus();
}
});
</script>