Ignore:
Timestamp:
07/31/12 15:11:44 (12 years ago)
Author:
gustavo
Message:

Ticket #2953 - Melhorar a disposicao da listagem de anexos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.2-expresso2/prototype/modules/mail/templates/attachment_add_itemlist_tooltip.ejs

    r6760 r6918  
    1 <span> 
    2         <b>File Name: </b> 
    3         <%=data.attach.fullFileName%> 
    4 </span> 
    5 <br/> 
    6 <span> 
    7         <b>File Size: </b> 
    8         <%=data.attach.fileSize%> 
    9 </span> 
    10 <br/> 
    11 <span style="display:inline-block;"> 
    12         <b>Status: </b> 
    13         <%if(typeof(data.attach.error) == "boolean"){%> 
    14         <%=(data.attach.error ? "Loading... " : "Success")%> 
    15     <%}else{%> 
    16         <%=data.attach.error%> 
    17     <%}%> 
    18 </span> 
     1<div> 
     2        <div style="word-wrap: break-word;"> 
     3                <b><%=get_lang("File name") %>: </b> 
     4                <%=data.attach.fullFileName%> 
     5        </div> 
     6        <div> 
     7                <b><%=get_lang("Size") %>: </b> 
     8                <%=data.attach.fileSize%> 
     9        </div> 
     10        <div> 
     11                <b>Status: </b> 
     12                <%if(typeof(data.attach.error) == "boolean"){%> 
     13                <%=(data.attach.error ? get_lang("Loading") : get_lang("Success"))%> 
     14            <%}else{%> 
     15                <%=data.attach.error%> 
     16            <%}%> 
     17        </div> 
     18</div> 
Note: See TracChangeset for help on using the changeset viewer.