Opened 12 years ago
Closed 12 years ago
#11165 closed defect (fixed)
typo in dojox.widget.Calendar applying class to cell
Reported by: | dwolverton | Owned by: | dante |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | DojoX Widgets | Version: | 1.5.0b2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Line 566 currently reads:
clazz += clazz2 + " " + clazz;
But it should be:
clazz = clazz2 + " " + clazz;
Change History (2)
comment:1 Changed 12 years ago by
Milestone: | tbd → 1.6 |
---|
comment:2 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
(In [22518]) fixes #11165 - good spot dwolverton. prevent the class from appending itself to iteself. the intent was to overwrite, clearly.