mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fixes a weird IE7 bug in the unit tests. If anybody can shed some light on this one, I'm a taker.
This commit is contained in:
parent
d638aa9c6d
commit
6eb75676c4
@ -1760,7 +1760,12 @@ test("jQuery.post - data", 3, function() {
|
||||
strictEqual( data, "test%5Blength%5D=7&test%5Bfoo%5D=bar", "Check if a sub-object with a length param is serialized correctly");
|
||||
}
|
||||
})
|
||||
).then( start, start );
|
||||
// The more compact then( start, start ) doesn't work in IE7
|
||||
).then( function() {
|
||||
start();
|
||||
}, function() {
|
||||
start();
|
||||
} );
|
||||
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user