Changeset 7124
- Timestamp:
- 05/09/08 10:29:32 (2 months ago)
- Files:
-
- sandbox/camptocamp/unhcr/lib/OpenLayers/Request.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/camptocamp/unhcr/lib/OpenLayers/Request.js
r7048 r7124 97 97 request.onreadystatechange = function() { 98 98 if(request.readyState == OpenLayers.Request.XMLHttpRequest.DONE) { 99 complete(request); 99 try { 100 complete(request); 101 } catch(exception) { 102 throw exception; 103 } 100 104 } 101 105 }
