#17070 closed defect (fixed)
GridContainerLite typeof check issue
Reported by: | Brian Arnold | Owned by: | Brian Arnold |
---|---|---|---|
Priority: | low | Milestone: | 1.9 |
Component: | DojoX Layout | Version: | 1.9.0b2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
In dojox/layout/GridContainerLite
, there's a check that reads as follows:
typeof(p) === undefined
That undefined
should really be "undefined"
, because that check is *always* going to be false, since typeof
always returns a truthy string. Additionally, it's made to look like a function invocation, which it isn't. Going to be pushing a few updates to fix this across the board.
Note: See
TracTickets for help on using
tickets.
In [31328]: