Changeset 3854
- Timestamp:
- 08/04/07 15:53:30 (1 year ago)
- Files:
-
- sandbox/tschaub/xml/examples/xml.html (modified) (1 diff)
- sandbox/tschaub/xml/lib/OpenLayers/Format/XML.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/tschaub/xml/examples/xml.html
r3846 r3854 46 46 function loadSuccess(request) { 47 47 updateStatus("loaded"); 48 doc = request.responseXML; 48 if(!request.responseXML.documentElement) { 49 doc = format.read(request.responseText); 50 } else { 51 doc = request.responseXML; 52 } 49 53 } 50 54 sandbox/tschaub/xml/lib/OpenLayers/Format/XML.js
r3849 r3854 57 57 function() { 58 58 var xmldom; 59 // since we want to be able to call this method on the class59 // since we want to be able to call this method on the prototype 60 60 // itself, this.xmldom may not exist even if in IE 61 61 if(window.ActiveXObject && !this.xmldom) {
