(js,css) Improve attendees editor

Fixes #3730
This commit is contained in:
Francis Lachapelle
2016-06-16 14:46:05 -04:00
parent 15188a4997
commit af8f939559
4 changed files with 48 additions and 11 deletions
@@ -276,11 +276,13 @@
// User pressed "Enter" in search field, adding a non-matching card
if (card.isValidEmail()) {
vm.component.addAttendee(new Card({ emails: [{ value: card }] }));
vm.showAttendeesEditor = true;
vm.searchText = '';
}
}
else {
vm.component.addAttendee(card);
vm.showAttendeesEditor = true;
}
}