Ignore:
Timestamp:
05/24/10 15:28:32 (14 years ago)
Author:
alexandrecorreia
Message:

Ticket #986 - Corrigido erro que causava em algumas mensagens, quando o modulo do IM está carregado.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/jabberit_messenger/trophy_expresso/js/jscode/loadIM.js

    r2834 r2841  
    11581158                                                path_jabberit + 'js/show_hidden.js', 
    11591159                                                path_jabberit + 'js/trophyim.js', 
     1160                                                path_jabberit + 'js/strophe.js', 
     1161                                                path_jabberit + 'js/json2.js', 
    11601162                                                path_jabberit + 'js/AddUser.js', 
    11611163                                                path_jabberit + 'js/SelectEditable.js', 
     
    12501252        window.LoadIM = loadIM; 
    12511253         
     1254         
     1255        // Necessário para não ocasionar problema no ExpressoMail 
     1256        // quando os itens abaixo não são criados pelo próprio ExpressoMail 
     1257        if( is_ie ) 
     1258        { 
     1259                configEvents( window, 'onload', function( ) 
     1260                { 
     1261                        if ( ! document.getElementById( 'cc_msg_err_serialize_data_unknown' ) ) 
     1262                        { 
     1263                                var fix = document.createElement('input'); 
     1264                                        fix.type        = 'hidden'; 
     1265                                        fix.id          = 'cc_msg_err_serialize_data_unknown'; 
     1266                                 
     1267                                        document.appendChild( fix ); 
     1268                        } 
     1269                        if ( ! window.showMessage ) 
     1270                                window.showMessage = function(){}; 
     1271                }); 
     1272        } 
     1273         
    12521274})(); 
Note: See TracChangeset for help on using the changeset viewer.