Changeset 8092 for trunk


Ignore:
Timestamp:
04/15/13 11:59:53 (11 years ago)
Author:
angelo
Message:

Ticket #3425 - Inconsistencia ao salvar mensagem criada

Location:
trunk
Files:
2 edited

Legend:

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

    r8070 r8092  
    50615061        $(this).prev().show(); 
    50625062        }); 
    5063         fileUploadMSG.find(".fileUploadButton, .message-attach-link").button().filter(".fileUploadButton").click(function(){ 
    5064             fileUploadMSG.find("input:file").trigger("click"); 
    5065     }); 
    5066  
    5067     fileUploadMSG.find("input:file").fileupload({ 
     5063 
     5064 
     5065    fileUploadMSG.find(".button").button().filter(".fileinput-button").find(".ui-button-text").css("margin-top","2px").find("input:file").fileupload({ 
    50685066                //singleFileUploads : true,fileUploadMSG 
    50695067                sequentialUploads: true,  
     
    52415239            }); 
    52425240        }*/ 
    5243         });/*.css({ 
     5241        }).css({ 
    52445242                "height" : "20px",  
    52455243                "width": (is_webkit ? "205px" : "100px"),  
    52465244                "border-width": "0 0 0px 0px",  
    52475245        "-moz-transform" : "rotate(-180deg) translate(5px, -0.5px) scale(1.1)",   
    5248         "-webkit-transform" : "rotate(-180deg) translate(0px, 0px)" 
    5249         }).end().end().end().*/ 
     5246        "-webkit-transform" : "rotate(-180deg) translate(0px, 0px)", 
     5247        "cursor" : "pointer" 
     5248        });/*.end().end().end().*/ 
     5249 
    52505250    fileUploadMSG.find(".message-attach-link").click(function(){ 
    52515251                jQuery('#message-attach-dialog').html(DataLayer.render("../prototype/modules/attach_message/attach_message.ejs", {})); 
  • trunk/prototype/modules/mail/templates/attachment.ejs

    r7697 r8092  
    1 <div id="fileupload_msg<%=data.ID%>" class="fileupload" style="margin : 5px 0px 0px 0px; padding-bottom : 5px;"> 
    2     <div class="button-files-upload"> 
    3     <button class="fileUploadButton">Anexar Arquivos</button> 
    4                         <INPUT type="file" id="fileInput<%=data.ID%>" name="files[]" style="display:none;" multiple></INPUT> 
     1<div id="fileupload_msg<%=data.ID%>" class="fileupload" style="margin : 15px 0px -5px -10px; padding-bottom : 5px;"> 
     2        <div class="row fileupload-buttonbar"> 
     3                <div class="button-files-upload"> 
     4                        <<%= is_webkit ? 'button' : 'span style="height: 22px; cursor:pointer;"' %>  class="fileinput-button button small"> 
     5                                <span style="margin-top: 4px; cursor:pointer;"><i class="icon-plus icon-white"></i>Anexar arquivos</span> 
     6                                <INPUT type="file" id="fileInput<%=data.ID%>" name="files[]" multiple></INPUT> 
    57                        </<%= is_webkit ? 'button' : 'span' %>> 
    6                         <button class="message-attach-link button-small"> 
     8                        <button class="message-attach-link button small"> 
    79                                <span>Anexar mensagens</span> 
    810                        </button> 
    9     </div> 
    10 <div class="files-list"> 
     11                </div> 
     12        </div> 
     13        <br /> 
     14        <div class="files-list" style="margin: 5px"> 
    1115                <div class="attachments-list ui-corner-all" style="display:none;"></div> 
    1216        </div> 
Note: See TracChangeset for help on using the changeset viewer.