Opened 15 years ago
Closed 15 years ago
#1822 closed bug (fixed)
queue() in 2 cases doesn't default to "fx"
Reported by: | davidserduke | Owned by: | davidserduke |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | effects | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
There are two forms of queue mentioned in the documentation below
queue(array)
and
queue()
In both cases it appears they don't default to the "fx" type if nothing is passed in as the documentation suggests they should so you really have to call
queue("fx", array)
and
queue("fx")
to get access to the functionality.
Attachments (2)
Change History (7)
Changed 15 years ago by
Attachment: | jquery_test.html added |
---|
comment:1 Changed 15 years ago by
Changed 15 years ago by
comment:3 Changed 15 years ago by
Component: | core → fx |
---|
comment:4 Changed 15 years ago by
need: | Review → Commit |
---|---|
Owner: | set to davidserduke |
Be sure to use the constructor property to type check for Array.
type.constructor == Array
Note: See
TracTickets for help on using
tickets.
Added a test case to show the bug as well as a patch that fixed the test case.