Ignore:
Timestamp:
07/15/11 09:56:17 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1820 - Implementação modal para exportação de msgs locais.r4605

File:
1 edited

Legend:

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

    r4476 r4760  
    278278        {        
    279279                try 
    280                 {  
     280                { 
    281281                        this.oxmlhttp = new XMLHttpRequest(); 
    282282                        this.oxmlhttp.overrideMimeType('text/xml'); 
    283283                } 
    284284                catch (e) 
    285                 {  
     285                { 
    286286                        try 
    287287                        { 
     
    289289                        } 
    290290                        catch (e1) 
    291                         {  
     291                        { 
    292292                                try 
    293293                                { 
     
    429429        // Cancel Request Connector 
    430430        cConnector.prototype.cancelRequest = function (){ 
    431                 if (!this.requests[this.tid]){ 
     431 
     432                if (!this.requests[this.tid]){ 
    432433                        return false; 
    433434                } 
    434                 this.oxmlhttp.onreadystatechange = null; 
    435                 this.requests[this.tid].abort(); 
     435                //this.oxmlhttp.onreadystatechange = null; 
     436                this.requests[this.tid].abort(); 
     437                delete this.requests[this.tid]; 
     438                this.requests[this.tid] = null; 
     439                 
    436440                this.hideProgressBar(); 
    437441        } 
Note: See TracChangeset for help on using the changeset viewer.