Opened 9 years ago
Closed 9 years ago
#14231 closed bug (notabug)
fadeIn fadeOut queue functionality not works
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.10.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Mentioning queue in fadeOut or fadeIn options does not have effect! In fact they are added to "fx" queue.
function customNamedQueue(el) {
var e = $(el); e.fadeOut({duration:1000, queque:"test"}); e.fadeIn({duration:1000, queque:"test"}); console.log("Queue length: " + e.queue("test").length); console.log("fx Queue length: " + e.queue("fx").length); e.dequeue("test");
};
Change History (2)
comment:1 Changed 9 years ago by
comment:2 Changed 9 years ago by
Resolution: | → notabug |
---|---|
Status: | new → closed |
You must spell queue
properly in your options object.
Note: See
TracTickets for help on using
tickets.
In fact, I think I found the problem. The problem returns to a plainObject issue, I created the jsFiddle Link: http://jsfiddle.net/rnvuT/