aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-11-07 11:19:44 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-11-07 11:19:44 +0000
commit98e8ea3186e3b57955e94364c454de40f458ea0a (patch)
tree0ec46a6df2f306a90283ee2c60c09c77d7474c5a /src/ajax
parentd91ee794ba481f2fbac3329e01a18cf7ced5b1a3 (diff)
downloadjquery-98e8ea3186e3b57955e94364c454de40f458ea0a.tar.gz
jquery-98e8ea3186e3b57955e94364c454de40f458ea0a.zip
Added pseudo-fix for #164; fixed some tests that failed in IE
Diffstat (limited to 'src/ajax')
-rw-r--r--src/ajax/ajax.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index 9ec6184c6..2ed539607 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -47,8 +47,8 @@ jQuery.fn.extend({
* });
*
* @test stop();
- * foobar = undefined;
- * foo = undefined;
+ * window.foobar = undefined;
+ * window.foo = undefined;
* var verifyEvaluation = function() {
* ok( foobar == "bar", 'Check if script src was evaluated after load' );
* start();
@@ -657,8 +657,8 @@ jQuery.extend({
* });
*
* @test stop();
- * foobar = undefined;
- * foo = undefined;
+ * window.foobar = undefined;
+ * window.foo = undefined;
* var verifyEvaluation = function() {
* ok( foobar == "bar", 'Check if script src was evaluated for datatype html' );
* start();