From c04500a8347f381b069c036d9ac24b591b3fc6b7 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Wed, 17 Nov 2010 14:50:05 -0600 Subject: [PATCH] Optimize for size instead of speed. --- src/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ajax.js b/src/ajax.js index 61b9c43..9dbb082 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -201,7 +201,7 @@ jQuery.extend({ // toString fixes people passing a window.location or // document.location to $.ajax, which worked in 1.4.2 and // earlier (bug #7531). It should be removed in 1.5. - s.url = s.url.toString().replace( rhash, "" ); + s.url = ("" + s.url).replace( rhash, "" ); // Use original (not extended) context object if it was provided s.context = origSettings && origSettings.context != null ? origSettings.context : s; -- 1.7.10.4