Modify ↓
Opened 15 years ago
Closed 15 years ago
#6260 closed enhancement (fixed)
[PATCH] Show week numbers in calendar
Reported by: | terje | Owned by: | Robert Corsaro |
---|---|---|---|
Priority: | normal | Component: | DateFieldPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
Javascript from http://dev.jqueryui.com/changeset/3004#file48
Attachments (2)
Change History (7)
Changed 15 years ago by
Attachment: | weeknumbers.diff added |
---|
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Sorry, I meant this:
< if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1}, --- > if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(Math.round((checkDate-firstMon)/86400000)/7)+1},
comment:3 follow-up: 4 Changed 15 years ago by
Status: | new → assigned |
---|
comment:4 Changed 15 years ago by
Replying to doki_pen: Sorry that was a quick hack to fix an off-by-one error New attachment includes correct fix from http://dev.jqueryui.com/changeset/2423
comment:5 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
(In [7183]) Week numbers.
and jquery-ui fixes related to week numbers
Note: See
TracTickets for help on using
tickets.
Where did this change come from and what does it fix?
---