mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:41 +01:00
Force user accounts to be listed first in tooltip, looks like some times they got put last instead
This commit is contained in:
parent
6f980c92db
commit
04c01fc0cc
@ -502,13 +502,17 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
|
||||
cat.destroy();
|
||||
}
|
||||
var participants = '';
|
||||
if(this.options.value.participant_types[''])
|
||||
{
|
||||
participants += this.options.value.participant_types[''].join("<br />");
|
||||
}
|
||||
for(var type_name in this.options.value.participant_types)
|
||||
{
|
||||
if(type_name)
|
||||
{
|
||||
participants += '</p><p><span class="calendar_calEventLabel">'+type_name+'</span>:<br />';
|
||||
participants += this.options.value.participant_types[type_name].join("<br />");
|
||||
}
|
||||
participants += this.options.value.participant_types[type_name].join("<br />");
|
||||
}
|
||||
|
||||
return '<div class="calendar_calEventTooltip ' + this._status_class() +' '+ this.options.class +
|
||||
|
Loading…
Reference in New Issue
Block a user