Side navigation
#14231 closed bug (notabug)
Opened August 08, 2013 02:23AM UTC
Closed August 09, 2013 12:31AM UTC
fadeIn fadeOut queue functionality not works
Reported by: | mohsenekhtiari@yahoo.com | 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");
};
In fact, I think I found the problem. The problem returns to a plainObject issue, I created the jsFiddle Link:
http://jsfiddle.net/rnvuT/