mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-20 09:34:20 +00:00
(js) Save addressbook search string
This allow to show the email address that matches the search string (if it does)
This commit is contained in:
@@ -235,7 +235,7 @@
|
||||
Card.prototype.$preferredEmail = function(partial) {
|
||||
var email, re;
|
||||
if (partial) {
|
||||
re = new RegExp(partial);
|
||||
re = new RegExp(partial, 'i');
|
||||
email = _.find(this.emails, function(o) {
|
||||
return re.test(o.value);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user