Set autofocus to assignee dropdown (board popover)

This commit is contained in:
Frederic Guillot
2015-05-07 19:19:23 -04:00
parent 6fb53838f5
commit 70e2a0d981
5 changed files with 11 additions and 3 deletions

View File

@@ -200,7 +200,7 @@ var Kanboard = (function() {
$(document).on("click", ".popover", Kanboard.Popover);
// Autofocus fields (html5 autofocus works only with page onload)
$("input[autofocus]").each(function(index, element) {
$("[autofocus]").each(function(index, element) {
$(this).focus();
})