Added in the .delay() method for delaying the execution of queued functions and animations.
This commit is contained in:
parent
d42afd0f65
commit
bbd933cbfe
2 changed files with 30 additions and 0 deletions
|
@ -257,6 +257,21 @@ test("queue() passes in the next item in the queue as a parameter to fx queues",
|
|||
|
||||
});
|
||||
|
||||
test("delay()", function() {
|
||||
expect(2);
|
||||
stop();
|
||||
|
||||
var foo = jQuery({}), run = 0;
|
||||
|
||||
foo.delay(100).queue(function(){
|
||||
run = 1;
|
||||
ok( true, "The function was dequeued." );
|
||||
start();
|
||||
});
|
||||
|
||||
equals( run, 0, "The delay delayed the next function from running." );
|
||||
});
|
||||
|
||||
test("clearQueue(name) clears the queue", function() {
|
||||
expect(1);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue