Update of /cvsroot/qooxdoo/qooxdoo/source/script/transport
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25160/source/script/transport
Modified Files:
Tag: renderer
QxXmlHttpTransport.js
Log Message:
Improved disposer
Index: QxXmlHttpTransport.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/transport/Attic/QxXmlHttpTransport.js,v
retrieving revision 1.1.2.7
retrieving revision 1.1.2.8
diff -C2 -d -r1.1.2.7 -r1.1.2.8
*** QxXmlHttpTransport.js 19 Jan 2006 13:56:09 -0000 1.1.2.7
--- QxXmlHttpTransport.js 19 Jan 2006 15:09:53 -0000 1.1.2.8
***************
*** 319,322 ****
--- 319,324 ----
+
+
/*
---------------------------------------------------------------------------
***************
*** 461,464 ****
--- 463,472 ----
+
+
+
+
+
+
/*
---------------------------------------------------------------------------
***************
*** 473,477 ****
};
! this._req = null;
return QxTarget.prototype.dispose.call(this);
--- 481,489 ----
};
! if (this._req)
! {
! this._req.onreadystatechange = null;
! this._req = null;
! };
return QxTarget.prototype.dispose.call(this);
|