[Vtigercrm-commits] [vtiger-commits] r10982 - /vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Wed May 23 08:53:25 EDT 2007


Author: richie
Date: Wed May 23 06:53:19 2007
New Revision: 10982

Log:
fix for Webmails - In IE it shows the javascript error when clicking on attachments icon. Fixes #3864 -sri

Modified:
    vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js

Modified: vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js (original)
+++ vtigercrm/branches/5.0.3/modules/Webmails/Webmails.js Wed May 23 06:53:19 2007
@@ -33,7 +33,7 @@
                 $("unread_img_"+mid).removeChild($("unread_img_"+mid).firstChild);
                 $("unread_img_"+mid).appendChild(Builder.node('a',
                         {href: 'javascript:;', onclick: 'OpenComposer('+mid+',\'reply\')'},
-                        [Builder.node('img',{src: 'themes/images/openmail.jpg', border: '0', width: '12', height: '12'})]
+                        [Builder.node('img',{src: 'themes/images/openmail.gif', border: '0', width: '12', height: '12'})]
                 ));
 	}
         node.className='read_email';
@@ -90,7 +90,7 @@
 }
 function displayAttachments(mid) {
         var url = "index.php?module=Webmails&action=dlAttachments&mailid="+mid+"&mailbox="+mailbox;
-        window.open(url,"Download Attachments",'menubar=no,toolbar=no,location=no,status=no,resizable=no,width=450,height=450');
+        window.open(url,"DownloadAttachments",'menubar=no,toolbar=no,location=no,status=no,resizable=no,width=450,height=450');
 }
 function OpenComposer(id,mode)
 {





More information about the vtigercrm-commits mailing list