mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Fixed two FF JS warnings
This commit is contained in:
@@ -457,7 +457,8 @@ jQuery.extend({
|
||||
timeout: 0,
|
||||
contentType: "application/x-www-form-urlencoded",
|
||||
processData: true,
|
||||
async: true
|
||||
async: true,
|
||||
data: null
|
||||
},
|
||||
|
||||
// Last-Modified header cache for next request
|
||||
|
||||
@@ -70,7 +70,7 @@ test("load(String, Object, Function) - inject without callback", function() {
|
||||
test("load(String, Object, Function) - check scripts", function() {
|
||||
expect(7);
|
||||
stop();
|
||||
testFoo = undefined;
|
||||
var testFoo = undefined;
|
||||
foobar = null;
|
||||
var verifyEvaluation = function() {
|
||||
ok( foobar == "bar", 'Check if script src was evaluated after load' );
|
||||
|
||||
Reference in New Issue
Block a user