Changeset 902


Ignore:
Timestamp:
05/21/09 16:48:29 (15 years ago)
Author:
rodsouza
Message:

Ticket #245 - Removing the function changeEnterKey () of code because it is no longer referenced.

File:
1 edited

Legend:

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

    r901 r902  
    11861186} 
    11871187 
    1188  
    1189 // Change the tag <P> for the tag <BR> on IE 
    1190 function changeEnterKey(win) { 
    1191         var oSel = win.document.selection.createRange(); 
    1192         if ( is_ie ) 
    1193                 oSel.pasteHTML('<p style="margin:0px">'); 
    1194         else 
    1195                 oSel.pasteHTML("<br />"); 
    1196         win.event.cancelBubble = true; 
    1197         win.event.returnValue=false; 
    1198         oSel.select(); 
    1199         oSel.moveEnd("character",1); 
    1200         oSel.moveStart("character",1); 
    1201         oSel.collapse(false); 
    1202         return false; 
    1203 } 
    1204  
    12051188function send_message_return(data, ID){ 
    12061189        if(data && data.success == true ){ 
Note: See TracChangeset for help on using the changeset viewer.