Fixed two FF JS warnings
This commit is contained in:
parent
677483ce44
commit
8ac2169dc0
2 changed files with 3 additions and 2 deletions
|
@ -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' );
|
||||
|
|
Loading…
Reference in a new issue