Add dropdown menu to autocomplete email field from project members
This commit is contained in:
12
assets/js/components/autocomplete-email.js
Normal file
12
assets/js/components/autocomplete-email.js
Normal file
@@ -0,0 +1,12 @@
|
||||
KB.onClick('.js-autocomplete-email', function (e) {
|
||||
var email = KB.dom(e.target).data('email');
|
||||
|
||||
if (email) {
|
||||
var emailField = KB.find('.js-task-mail-form input[type="email"]');
|
||||
|
||||
if (emailField) {
|
||||
emailField.attr('value', email);
|
||||
_KB.controllers['Dropdown'].close();
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user