Changeset 6195
- Timestamp:
- 02/10/08 21:39:01 (1 year ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Format/KML.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Format/KML.js
r6179 r6195 250 250 */ 251 251 fetchLink: function(href) { 252 253 if (OpenLayers.ProxyHost254 && OpenLayers.String.startsWith(href, "http")) {255 href = OpenLayers.ProxyHost + escape(href);256 }257 258 252 var request = new OpenLayers.Ajax.Request(href, 259 253 {method: 'get', asynchronous: false }); … … 262 256 return request.transport.responseText; 263 257 } 264 265 258 }, 266 259
