Changeset 2429
- Timestamp:
- 07/20/07 22:21:41 (1 year ago)
- Files:
-
- 1 modified
-
trunk/jquery/src/ajax/ajax.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/ajax/ajax.js
r2428 r2429 623 623 var onreadystatechange = function(isTimeout){ 624 624 // The transfer is complete and the data is available, or the request timed out 625 if ( xml && (xml.readyState == 4 || isTimeout == "timeout") ) {625 if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) { 626 626 requestDone = true; 627 627
