Made some minor fixes to how content-type and context is handled on remote XML files.
This commit is contained in:
parent
5ec5de6953
commit
26580d2675
2 changed files with 5 additions and 7 deletions
|
@ -264,8 +264,8 @@ jQuery.extend({
|
|||
// otherwise return plain text.
|
||||
httpData: function(r,type) {
|
||||
var ct = r.getResponseHeader("content-type");
|
||||
var data = ( !type || type == "xml" ) && ct && ct.indexOf("xml") >= 0;
|
||||
data = data ? r.responseXML : r.responseText;
|
||||
var data = !type && ct && ct.indexOf("xml") >= 0;
|
||||
data = type == "xml" || data ? r.responseXML : r.responseText;
|
||||
|
||||
// If the type is "script", eval it
|
||||
if ( type == "script" ) eval.call( window, data );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue