Simplified check for XMLHttpRequest (saving a few bytes) and fixed load()-test
[jquery.git] / src / ajax / ajaxTest.js
index 5eea9b8..23a76fd 100644 (file)
@@ -70,8 +70,8 @@ test("load(String, Object, Function) - inject without callback", function() {
 test("load(String, Object, Function) - check scripts", function() {
        expect(7);
        stop();
-       var testFoo = undefined;
-       foobar = null;
+       window.testFoo = undefined;
+       window.foobar = null;
        var verifyEvaluation = function() {
          ok( foobar == "bar", 'Check if script src was evaluated after load' );
          ok( $('#ap').html() == 'bar', 'Check if script evaluation has modified DOM');