Add autocomplete dropdown on comment subject and email fields

This commit is contained in:
Frederic Guillot
2017-06-03 17:51:20 -04:00
parent dd8d7ef49d
commit 6b9b9d2d1c
7 changed files with 52 additions and 20 deletions

View File

@@ -52,7 +52,11 @@ Kanboard.Dropdown.prototype.listen = function() {
if ($(e.target).is('li')) {
KB.trigger('dropdown.clicked');
$(this).find('a:visible')[0].click(); // Calling native click() not the jQuery one
var element = $(this).find('a:visible');
if (element.length > 0) {
element[0].click(); // Calling native click() not the jQuery one
}
}
});
};