File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -310,6 +310,7 @@ jQuery.extend({
310310 contentType : "application/x-www-form-urlencoded" ,
311311 processData : true ,
312312 async : true ,
313+ crossDomain : null ,
313314 /*
314315 timeout: 0,
315316 data: null,
@@ -319,7 +320,6 @@ jQuery.extend({
319320 cache: null,
320321 traditional: false,
321322 headers: {},
322- crossDomain: null,
323323 */
324324
325325 accepts : {
@@ -604,7 +604,7 @@ jQuery.extend({
604604 s . dataTypes = jQuery . trim ( s . dataType || "*" ) . toLowerCase ( ) . split ( rspacesAjax ) ;
605605
606606 // Determine if a cross-domain request is in order
607- if ( ! s . crossDomain ) {
607+ if ( s . crossDomain == null ) {
608608 parts = rurl . exec ( s . url . toLowerCase ( ) ) ;
609609 s . crossDomain = ! ! ( parts &&
610610 ( parts [ 1 ] != ajaxLocParts [ 1 ] || parts [ 2 ] != ajaxLocParts [ 2 ] ||
You can’t perform that action at this time.
0 commit comments