aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
diff options
context:
space:
mode:
authorDavid Serduke <davidserduke@gmail.com>2007-11-30 02:42:48 +0000
committerDavid Serduke <davidserduke@gmail.com>2007-11-30 02:42:48 +0000
commitaca1cc367782f8d038a13794a46aec6fd825eb45 (patch)
treea06fb5aab962c0e6e3a2e75850098708f3ff8f9f /src/ajax.js
parent4b8f6cdc86c395fb92c7d50e8642118963232af4 (diff)
downloadjquery-aca1cc367782f8d038a13794a46aec6fd825eb45.tar.gz
jquery-aca1cc367782f8d038a13794a46aec6fd825eb45.zip
Removed comments and code related to Safari being unable to do a sync global eval. With the new globalEval() code that should no longer be a problem.
Diffstat (limited to 'src/ajax.js')
-rw-r--r--src/ajax.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ajax.js b/src/ajax.js
index 6821cecc4..ba3aa968d 100644
--- a/src/ajax.js
+++ b/src/ajax.js
@@ -52,10 +52,7 @@ jQuery.fn.extend({
// If not, just inject the full result
res.responseText );
- // Add delay to account for Safari's delay in globalEval
- setTimeout(function(){
- self.each( callback, [res.responseText, status, res] );
- }, 13);
+ self.each( callback, [res.responseText, status, res] );
}
});
return this;