Changeset 8092
- Timestamp:
- 04/15/13 11:59:53 (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/expressoMail1_2/js/draw_api.js
r8070 r8092 5061 5061 $(this).prev().show(); 5062 5062 }); 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({ 5068 5066 //singleFileUploads : true,fileUploadMSG 5069 5067 sequentialUploads: true, … … 5241 5239 }); 5242 5240 }*/ 5243 }) ;/*.css({5241 }).css({ 5244 5242 "height" : "20px", 5245 5243 "width": (is_webkit ? "205px" : "100px"), 5246 5244 "border-width": "0 0 0px 0px", 5247 5245 "-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 5250 5250 fileUploadMSG.find(".message-attach-link").click(function(){ 5251 5251 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> 5 7 </<%= is_webkit ? 'button' : 'span' %>> 6 <button class="message-attach-link button -small">8 <button class="message-attach-link button small"> 7 9 <span>Anexar mensagens</span> 8 10 </button> 9 </div> 10 <div class="files-list"> 11 </div> 12 </div> 13 <br /> 14 <div class="files-list" style="margin: 5px"> 11 15 <div class="attachments-list ui-corner-all" style="display:none;"></div> 12 16 </div>
Note: See TracChangeset
for help on using the changeset viewer.