From 06eb4d3223c4eee4223fbb084033dadfeae12f34 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Tue, 13 May 2008 19:58:00 +0000 Subject: [PATCH] jquery ajax: renaming jQuery.ajax.re to remote. --- src/ajax.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ajax.js b/src/ajax.js index 598232f..1a32b45 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -233,10 +233,13 @@ jQuery.extend({ if ( s.global && ! jQuery.active++ ) jQuery.event.trigger( "ajaxStart" ); + // Matches an absolute URL, and saves the domain + var remote = /^(?:\w+:)?\/\/([^\/?#]+)/; + // If we're requesting a remote document // and trying to load JSON or Script with a GET if ( s.dataType == "script" && s.type.toLowerCase() == "get" - && jQuery.ajax.re.test(s.url) && jQuery.ajax.re.exec(s.url)[1] != location.host ){ + && remote.test(s.url) && remote.exec(s.url)[1] != location.host ){ var head = document.getElementsByTagName("head")[0]; var script = document.createElement("script"); script.src = s.url; @@ -500,6 +503,3 @@ jQuery.extend({ } }); - -// Matches an absolute URL, and saves the domain -jQuery.ajax.re = /^(?:\w+:)?\/\/([^\/?#]+)/; -- 1.7.10.4