Changeset 7026


Ignore:
Timestamp:
08/15/12 14:51:10 (12 years ago)
Author:
gustavo
Message:

Ticket #3031 - Nao exibe que o anexo ultrapassou o tamanho maximo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r7014 r7026  
    45424542        content.find(".attachment td").filter(".value").prepend(DataLayer.render("../prototype/modules/mail/templates/attachment.ejs", {ID:ID})); 
    45434543        var fileUploadMSG = $('#fileupload_msg'+ID); 
    4544         var maxAttachmentSize = (preferences.max_attachment_size !== "" && preferences.max_attachment_size != 0) ? (parseInt(preferences.max_attachment_size.replace('M', '')) * 1048576 ) : false; 
     4544        var maxAttachmentSize = (preferences.max_attachment_size !== "" && preferences.max_attachment_size != 0) ? (parseInt(preferences.max_attachment_size.replace('M', '')) * 1048576 ) : 41943040; 
    45454545         
    45464546        content.find(".new-msg-head-data").scroll(function(){ 
Note: See TracChangeset for help on using the changeset viewer.