mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Do not add taglist emails one by one, add them all in one, as the rendering process in magicsuggest would be very resource consuming
This commit is contained in:
parent
b558a82cac
commit
0c6f050ae5
@ -556,10 +556,13 @@ var et2_taglist_email = et2_taglist.extend(
|
||||
var taglist = this.taglist;
|
||||
window.setTimeout(function()
|
||||
{
|
||||
var items = [];
|
||||
for(var i=0; i < parts.length; ++i)
|
||||
{
|
||||
taglist.addToSelection({id: parts[i], label: parts[i]});
|
||||
items.push({id: parts[i], label: parts[i]});
|
||||
|
||||
}
|
||||
taglist.addToSelection(items);
|
||||
}, 10);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user