source: branches/2.4/expressoMail1_2/templates/default/listContacts.ejs @ 7228

Revision 7228, 602 bytes checked in by douglas, 12 years ago (diff)

Ticket #0000 - Copiadas as alterações do Trunk. Versão final da 2.4.2.

  • Property svn:executable set to *
Line 
1
2<%if (data.type == 'linha'){%>
3<li>
4        <div class="line-separator">
5                &nbsp;
6        </div>
7<%}else{%>
8<li>
9        <img style="position:relative; top:2px; "src="templates/default/images/<%=data.type == 'pessoal' ? 'contato_pessoal' : 'contato_recente'%>.png" title="Contato <%=data.type == 'pessoal' ? data.type : 'recente'%>"/>
10        <a style="width:80%; display: inline-block;"><%= data.name.length <= 21 ? data.name : data.name.substr(0,18) + "..."%> - <%= data.email %></a>
11        <span style="width:16px; height:16px; top:5px; <%=data.type == 'pessoal' ? 'display:none' : ''%>">Excluir contato recente</span>       
12<%}%>
13</li>
Note: See TracBrowser for help on using the repository browser.