Skip to main content

Bug Tracker

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");

};

Attachments (0)
Change History (2)

Changed August 08, 2013 03:10AM UTC by mohsenekhtiari@yahoo.com comment:1

In fact, I think I found the problem. The problem returns to a plainObject issue, I created the jsFiddle Link:

http://jsfiddle.net/rnvuT/

Changed August 09, 2013 12:31AM UTC by dmethvin comment:2

resolution: → notabug
status: newclosed

You must spell queue properly in your options object.