Side navigation
#1822 closed bug (fixed)
Opened October 18, 2007 08:34PM UTC
Closed November 16, 2007 06:27PM UTC
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 (5)
Changed October 18, 2007 08:56PM UTC by comment:1
Changed October 18, 2007 09:32PM UTC by comment:2
Sorry this should have been in component fx, not core.
Changed November 15, 2007 01:39PM UTC by comment:3
component: | core → fx |
---|
Changed November 15, 2007 01:50PM UTC by comment:4
need: | Review → Commit |
---|---|
owner: | → davidserduke |
Be sure to use the constructor property to type check for Array.
type.constructor == Array
Changed November 16, 2007 06:27PM UTC by comment:5
resolution: | → fixed |
---|---|
status: | new → closed |
Fixed in [3835].
Added a test case to show the bug as well as a patch that fixed the test case.