Ticket #1097: patch_ajax.2.diff
| File patch_ajax.2.diff, 0.5 kB (added by pgiraud, 1 year ago) |
|---|
-
lib/OpenLayers/Ajax.js
old new 373 373 */ 374 374 onStateChange: function() { 375 375 var readyState = this.transport.readyState; 376 if (readyState != 1) {377 this.respondToReadyState(this.transport.readyState);376 if (readyState > 1 && !((readyState == 4) && this._complete)) { 377 this.respondToReadyState(this.transport.readyState); 378 378 } 379 379 }, 380 380
